7 lines
121 B
Common Lisp
Executable file
7 lines
121 B
Common Lisp
Executable file
(print_str "hello world")
|
|
|
|
(print_num (add 10 20))
|
|
|
|
(printf "5 + (100 / 5) = %d\n"
|
|
(add 5
|
|
(divide 100 5)))
|