From f56557a167685edd695d4fd9a098561108b69a45 Mon Sep 17 00:00:00 2001 From: Yuichi Nishiwaki Date: Sat, 8 Feb 2014 15:02:48 +0900 Subject: [PATCH] add hello world --- t/hello.scm | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 t/hello.scm diff --git a/t/hello.scm b/t/hello.scm new file mode 100644 index 00000000..aadb87de --- /dev/null +++ b/t/hello.scm @@ -0,0 +1,3 @@ +(import (scheme write)) + +(write-simple "hello world")