diff options
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/test.scm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/emacs/test.scm b/emacs/test.scm new file mode 100644 index 000000000..602a35efd --- /dev/null +++ b/emacs/test.scm @@ -0,0 +1,6 @@ +(display (+ 3 4 5)) +(newline) +(display (cons 'adding (cdr (command-line)))) +(newline) +(display (apply + (map string->number (cdr (command-line))))) +(newline) |