about summary refs log blame commit diff stats
path: root/chibi/print.scm
blob: 6e6ec99777f380877382e5a6e8f670f900bd9981 (plain) (tree)
1
2
3
4
5
6
7
8
9

                
 
                                               
 
                    
 
                                      
 
                


                  
                                    

           
(import
	(print))

;; very unoficial test of my tiny print library

(println "hi there")

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

(println "****")

(print "hi there")

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

(print "hi")