Sha256: c5081cce2610861851c4d54fc94ca9aa14739e13db8ba4a71fd80609c019f076
Contents?: true
Size: 824 Bytes
Versions: 222
Compression:
Stored size: 824 Bytes
Contents
Write a Domain Specific Language similar to the Graphviz dot language. A [Domain Specific Language (DSL)](https://en.wikipedia.org/wiki/Domain-specific_language) is a small language optimized for a specific domain. For example the dot language of [Graphviz](http://graphviz.org) allows you to write a textual description of a graph which is then transformed into a picture by one of the graphviz tools (such as `dot`). A simple graph looks like this: graph { graph [bgcolor="yellow"] a [color="red"] b [color="blue"] a -- b [color="green"] } Putting this in a file `example.dot` and running `dot example.dot -T png -o example.png` creates an image `example.png` with red and blue circle connected by a green line on a yellow background. Create a DSL similar to the dot language.
Version data entries
222 entries across 222 versions & 1 rubygems