Compare commits

..

2 commits

Author SHA1 Message Date
sam
30aef9bbaa add stdio include 2024-07-21 02:21:47 +12:00
sam
90009d760d update example 2024-07-21 02:21:39 +12:00
2 changed files with 8 additions and 1 deletions

View file

@ -1,2 +1,7 @@
(print_str "hello world")
(print_num (add 5 (divide 100 5)))
(print_num (add 10 20))
(printf "5 + (100 / 5) = %d\n"
(add 5
(divide 100 5)))

View file

@ -1,3 +1,5 @@
#include <stdio.h>
#ifndef __RUNTIME_H__
#define __RUNTIME_H__