From c8e78f3cae0fe357376348ae1321c0c371e5119d Mon Sep 17 00:00:00 2001 From: harrand Date: Thu, 18 Apr 2024 22:48:41 +0100 Subject: [PATCH] added hello_world.psy sample --- samples/hello_world.psy | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 samples/hello_world.psy diff --git a/samples/hello_world.psy b/samples/hello_world.psy new file mode 100644 index 0000000..b4f7c58 --- /dev/null +++ b/samples/hello_world.psy @@ -0,0 +1,10 @@ +main : () -> i64 +{ + return 0; +} + +== build == +{ + = link "exe"; + = output "hello_world.exe"; +} \ No newline at end of file