; hsp3dish hello world #include "hsp3dish.as" ; use hsp3dish #packopt name "01_hello_hsp3dish" #packopt type 0 #define KB_ESC $00080 ; set font font "Tahoma", 32, font_bold *mainloop stick k, 0 ; check keyboard if k & KB_ESC : goto *job_end ; ESC key to exit redraw 0 ; draw start color 0, 100, 200 boxf ; clear screen ; draw text color 255, 255, 255 pos 10, 10 mes "Hello World" redraw 1 ; draw end. screen refresh. await (1000 / 60) ; wait 1/60 sec ;await 12 goto *mainloop *job_end end