about summary refs log blame commit diff stats
path: root/chibi/print.scm
blob: 5f58a2329955537a0129ddd9ca49ad21e4392d57 (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")