1
0
mirror of https://github.com/janet-lang/janet synced 2025-01-10 07:30:26 +00:00
janet/examples/sysir/windows_samples.janet
2024-06-21 17:16:56 -05:00

15 lines
236 B
Plaintext

(use ./frontend)
(def winmain
'(defn Start:void []
(MessageBoxExA (the pointer 0) "Hello, world!" "Test" 0 (the s16 0))
(ExitProcess (the int 0))
(return)))
####
(compile1 winmain)
#(dump)
#(dumpc)
(dumpx64-windows)