-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Closed
Description
Many script programming languages are commonly able to comment out w/ '#'.
Nimrod is also able to do it.
And many script programming languages are able to use w/ #!shebang.
!shebang is i.e.
#!/usr/bin/env gosh
(define (fib n)
(if (< n 2) 1
(+ (fib (- n 2)) (fib (- n 1)))))
(print (fib 30))
But Nimrod cant kick w/ #!shebang.
Metadata
Metadata
Assignees
Labels
No labels