1
1
Fork 0
mirror of https://github.com/azur1s/bobbylisp.git synced 2024-10-16 02:37:40 -05:00

remove unused

This commit is contained in:
Natapat Samutpong 2022-02-25 04:38:03 +07:00
parent bc2b55e22a
commit a956b8c7d2
2 changed files with 0 additions and 16 deletions

BIN
a.out

Binary file not shown.

16
ex.c
View file

@ -1,16 +0,0 @@
#include <hycron/stdbool.h>
#include <string.h>
#include <unistd.h>
int foo = 1;
char *bar = "str";
bool baz = true;
int USER_DEFINED_qux(int lhs, int rhs)
{
return lhs + rhs;
}
int main(int ARGC, char **ARGV)
{
char *msg = "Hello, World!";
write(1, msg, strlen(msg));
return 0;
}