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

                
 
                                                
 
                    
 
                                      
 
                


                  
                                    
 
            

                    
(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")