Start on llvm IR target

# Conflicts:
#	README.md
This commit is contained in:
Johan B.W. de Vries 2025-02-02 15:43:37 +01:00
parent 8502abeff6
commit cfae563aef
2 changed files with 3 additions and 1 deletions

View File

@ -1,3 +1,5 @@
#include <stdio.h>
void print(char * x) void print(char * x)
{ {
return; return;
@ -11,7 +13,7 @@ int sum(int a, int b)
int main() int main()
{ {
char * foo = "Hello, world!"; char * foo = "Hello, world!";
print("This is a test."); printf("This is a test.");
return sum(7, 15); return sum(7, 15);
} }