diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-05-21 11:42:33 +0200 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-05-21 11:42:33 +0200 |
| commit | ec28f3d2a263440b167b2ae44033f2eae5bab88c (patch) | |
| tree | 2c170cd09786264ea5f017973f15297734268404 /config.json | |
| parent | 9af65c8ac721024d0e45a2a6bde5c3f9fe638516 (diff) | |
| download | project_euler-ec28f3d2a263440b167b2ae44033f2eae5bab88c.tar.gz project_euler-ec28f3d2a263440b167b2ae44033f2eae5bab88c.tar.bz2 project_euler-ec28f3d2a263440b167b2ae44033f2eae5bab88c.zip | |
problem 1 2 3 in rust
Diffstat (limited to 'config.json')
| -rw-r--r-- | config.json | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/config.json b/config.json index 06d0ac7..a0aa8a9 100644 --- a/config.json +++ b/config.json @@ -8,6 +8,7 @@ "bottom": "###" } }, + "haskell": { "extension": "hs", "comment" : { @@ -16,6 +17,7 @@ "bottom": "----" } }, + "c": { "extension": "c", "comment" : { @@ -24,6 +26,7 @@ "bottom": "*/" } }, + "lisp": { "extension": "lisp", "comment" : { @@ -31,6 +34,14 @@ "prefix" : ";;;; ", "bottom": ";;;;;;;;" } + }, + "rust": { + "extension": "rs", + "comment": { + "top": "/*", + "prefix" : "* ", + "bottom": "*/" + } } }, "url_format": "http://projecteuler.net/problem={index}", |
