Sha256: 74d9dc55715f686d4a743573baa57b23f3a1dcab4e4e5e0bcd9d7780c6b934b1

Contents?: true

Size: 752 Bytes

Versions: 174

Compression:

Stored size: 752 Bytes

Contents

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

174 entries across 174 versions & 1 rubygems

Version Path
trackler-2.0.8.34 common/exercises/dot-dsl/description.md
trackler-2.0.8.33 common/exercises/dot-dsl/description.md
trackler-2.0.8.32 common/exercises/dot-dsl/description.md
trackler-2.0.8.31 common/exercises/dot-dsl/description.md
trackler-2.0.8.30 common/exercises/dot-dsl/description.md
trackler-2.0.8.29 common/exercises/dot-dsl/description.md
trackler-2.0.8.28 common/exercises/dot-dsl/description.md
trackler-2.0.8.27 common/exercises/dot-dsl/description.md
trackler-2.0.8.26 common/exercises/dot-dsl/description.md
trackler-2.0.8.24 common/exercises/dot-dsl/description.md
trackler-2.0.8.23 common/exercises/dot-dsl/description.md
trackler-2.0.8.22 common/exercises/dot-dsl/description.md
trackler-2.0.8.21 common/exercises/dot-dsl/description.md
trackler-2.0.8.20 common/exercises/dot-dsl/description.md
trackler-2.0.8.19 common/exercises/dot-dsl/description.md
trackler-2.0.8.18 common/exercises/dot-dsl/description.md
trackler-2.0.8.17 common/exercises/dot-dsl/description.md
trackler-2.0.8.16 common/exercises/dot-dsl/description.md
trackler-2.0.8.15 common/exercises/dot-dsl/description.md
trackler-2.0.8.14 common/exercises/dot-dsl/description.md