程式語言 - High Level Assembly (HLA) - Assembly (x86) - Hello, world!



參考網站:
https://www.plantation-productions.com/Webster/

main.hla

program main;

#include("stdlib.hhf")

begin main;
    stdout.put("Hello, world!");
end main;

編譯、執行

$ export PATH=$PATH:/opt/hla/
$ export hlalib=/opt/hla/hlalib/
$ export hlainc=/opt/hla/include/

$ qemu-i386 /opt/hla/hla main.hla
$ qemu-i386 ./main
    Hello, world!