Hotbasic, Basic-Compiler that compiles the basic code to fast Assembler code, the compiled code is very small. You can produce Windows-, MS-DOS- (Console) and Linux software with Hotbasic.
Software Example Create a simple windows program with a button that you can click on.
create f as form
caption="Test program"
create b as button
caption="Click me"
onclick="bclick"
end create
end create
f.showmodal
end
bclick:
showmessage "You have clicked the button"
return
|