Compare commits

..

No commits in common. "30aef9bbaa20181a75a440effc318985016ff09d" and "786d85463a3b8ec57aef3df2336f6c72bd0aa250" have entirely different histories.

2 changed files with 1 additions and 8 deletions

View file

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

View file

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