Created
October 26, 2024 00:23
-
-
Save yunginnanet/d6b4100a5972b2de3765e77af2fe3823 to your computer and use it in GitHub Desktop.
janet helloworld type beat
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defn yeet | |
[input] | |
(if (= input "yeet") | |
(print "yeet!") | |
(print "be gone, " input "!") | |
) | |
) | |
(defn main | |
[& args] | |
(yeet (get args 1)) | |
(os/exit) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment