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

Version Path
trackler-2.2.1.180 problem-specifications/exercises/dot-dsl/description.md
trackler-2.2.1.179 problem-specifications/exercises/dot-dsl/description.md
trackler-2.2.1.178 problem-specifications/exercises/dot-dsl/description.md
trackler-2.2.1.177 problem-specifications/exercises/dot-dsl/description.md
trackler-2.2.1.176 problem-specifications/exercises/dot-dsl/description.md
trackler-2.2.1.175 problem-specifications/exercises/dot-dsl/description.md
trackler-2.2.1.174 problem-specifications/exercises/dot-dsl/description.md
trackler-2.2.1.173 problem-specifications/exercises/dot-dsl/description.md
trackler-2.2.1.172 problem-specifications/exercises/dot-dsl/description.md
trackler-2.2.1.171 problem-specifications/exercises/dot-dsl/description.md
trackler-2.2.1.170 problem-specifications/exercises/dot-dsl/description.md
trackler-2.2.1.169 problem-specifications/exercises/dot-dsl/description.md
trackler-2.2.1.167 problem-specifications/exercises/dot-dsl/description.md
trackler-2.2.1.166 problem-specifications/exercises/dot-dsl/description.md
trackler-2.2.1.165 problem-specifications/exercises/dot-dsl/description.md
trackler-2.2.1.164 problem-specifications/exercises/dot-dsl/description.md
trackler-2.2.1.163 problem-specifications/exercises/dot-dsl/description.md
trackler-2.2.1.162 problem-specifications/exercises/dot-dsl/description.md
trackler-2.2.1.161 problem-specifications/exercises/dot-dsl/description.md
trackler-2.2.1.160 problem-specifications/exercises/dot-dsl/description.md