Compare commits
2 commits
786d85463a
...
30aef9bbaa
Author | SHA1 | Date | |
---|---|---|---|
30aef9bbaa | |||
90009d760d |
2 changed files with 8 additions and 1 deletions
|
@ -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)))
|
|
@ -1,3 +1,5 @@
|
|||
#include <stdio.h>
|
||||
|
||||
#ifndef __RUNTIME_H__
|
||||
#define __RUNTIME_H__
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue