mirror of
https://github.com/janet-lang/janet
synced 2025-01-10 15:40:30 +00:00
15 lines
228 B
Plaintext
15 lines
228 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)
|