about summary refs log tree commit diff stats
path: root/chibi/print.scm
blob: 5f58a2329955537a0129ddd9ca49ad21e4392d57 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(import
	(print))

;; very unofficial test of my tiny print library

(println "hi there")

(printsln "kiwi" "banana" "pineapple")

(println "****")

(print "hi there")

(prints "kiwi" "banana" "pineapple")

(print "hi")