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.6.38 common/exercises/dot-dsl/description.md
trackler-2.0.6.37 common/exercises/dot-dsl/description.md
trackler-2.0.6.36 common/exercises/dot-dsl/description.md
trackler-2.0.6.35 common/exercises/dot-dsl/description.md
trackler-2.0.6.34 common/exercises/dot-dsl/description.md
trackler-2.0.6.33 common/exercises/dot-dsl/description.md
trackler-2.0.6.32 common/exercises/dot-dsl/description.md
trackler-2.0.6.31 common/exercises/dot-dsl/description.md
trackler-2.0.6.30 common/exercises/dot-dsl/description.md
trackler-2.0.6.29 common/exercises/dot-dsl/description.md
trackler-2.0.6.28 common/exercises/dot-dsl/description.md
trackler-2.0.6.27 common/exercises/dot-dsl/description.md
trackler-2.0.6.26 common/exercises/dot-dsl/description.md
trackler-2.0.6.25 common/exercises/dot-dsl/description.md
trackler-2.0.6.24 common/exercises/dot-dsl/description.md
trackler-2.0.6.23 common/exercises/dot-dsl/description.md
trackler-2.0.6.22 common/exercises/dot-dsl/description.md
trackler-2.0.6.21 common/exercises/dot-dsl/description.md
trackler-2.0.6.20 common/exercises/dot-dsl/description.md
trackler-2.0.6.19 common/exercises/dot-dsl/description.md