about summary refs log tree commit diff stats
path: root/chibi/print.scm
blob: 73bd0b3f365546925925c8fd95876f1aacce4951 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(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")

(println "end test")