We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2d060e9 + 2750693 commit 9804b3dCopy full SHA for 9804b3d
README.md
@@ -13,6 +13,7 @@ Currently supports:
13
* Python
14
* Ruby
15
* F#
16
+ * newLISP
17
18
You only have to add a few lines in a PR to support another.
19
examples/the-day-so-far.lsp
@@ -0,0 +1,3 @@
1
+#!/usr/bin/newlisp
2
+
3
+(format "the day is %2.0f%% done" (div (time-of-day) (* 24 60 60 10)))
lib/grammars.coffee
@@ -45,3 +45,8 @@ module.exports =
45
'F#':
46
command: "fsharpi"
47
"File Based": (filename) -> ['--exec', filename]
48
49
+ newLISP:
50
+ command: "newlisp"
51
+ "Selection Based": (code) -> ['-e', code]
52
+ "File Based": (filename) -> [filename]
0 commit comments