From 90009d760da01a2b3bceac5d5ace107b7560f3a6 Mon Sep 17 00:00:00 2001 From: sam Date: Sun, 21 Jul 2024 02:21:39 +1200 Subject: [PATCH] update example --- example.lisp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/example.lisp b/example.lisp index cc076c8..cd3676d 100755 --- a/example.lisp +++ b/example.lisp @@ -1,2 +1,7 @@ (print_str "hello world") -(print_num (add 5 (divide 100 5))) \ No newline at end of file + +(print_num (add 10 20)) + +(printf "5 + (100 / 5) = %d\n" + (add 5 + (divide 100 5))) \ No newline at end of file