Sha256: d37888e6303299add73655ac91d9a12a95932f57cf2d745618436a6158d0765e
Contents?: true
Size: 1.48 KB
Versions: 11
Compression:
Stored size: 1.48 KB
Contents
# Dot Dsl 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. ## Hints This exercise requires you to implement classes with a custom equality check. For more information, see [this page](https://msdn.microsoft.com/en-us/library/bsc2ak47(v=vs.110).aspx). ### Submitting Exercises Note that, when trying to submit an exercise, make sure you're exercise file you're submitting is in the `exercism/csharp/<exerciseName>` directory. For example, if you're submitting `bob.cs` for the Bob exercise, the submit command would be something like `exercism submit <path_to_exercism_dir>/csharp/bob/bob.cs`. ## Submitting Incomplete Solutions It's possible to submit an incomplete solution so you can see how others have completed the exercise.
Version data entries
11 entries across 11 versions & 1 rubygems