diff options
-rw-r--r-- | emacs/test.scm | 6 | ||||
-rw-r--r-- | hello-test.scm | 9 | ||||
-rw-r--r-- | hello.txt | bin | 0 -> 18 bytes |
3 files changed, 15 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) diff --git a/hello-test.scm b/hello-test.scm new file mode 100644 index 000000000..56c37d4e1 --- /dev/null +++ b/hello-test.scm @@ -0,0 +1,9 @@ +(use-modules (ice-9 rdelim)) +(for-each (lambda (i) + (write (with-input-from-file "/home/neil/google-neil.csv"; "hello.txt" + (lambda () + (set-port-encoding! (current-input-port) "UTF16LE") + (read-line)))) + (newline)) + (iota 5)) + diff --git a/hello.txt b/hello.txt Binary files differnew file mode 100644 index 000000000..429a04e90 --- /dev/null +++ b/hello.txt |