OSDN Git Service

Add: support namespace
[happyabc/happyabc.git] / example / literal.scm
1 ;;; 42
2 ;;; Thanks for all the fish
3 ;;; true
4 ;;; false
5 ;;; 42.5
6 (print 42)
7 (print "Thanks for all the fish")
8 (print #t)
9 (print #f)
10 (print 42.5)
11