Adding my first attempt at writing a lisp
[sandbox] / mini / examples / 03-cmd.mini
diff --git a/mini/examples/03-cmd.mini b/mini/examples/03-cmd.mini
new file mode 100644 (file)
index 0000000..d620540
--- /dev/null
@@ -0,0 +1,3 @@
+(if (= __arguments__ nil)
+    (print "No arguments given")
+    (print (car __arguments__)))