GitHub_collection_hello-world/v/visualfoxpro.prg

18 lines
277 B
Plaintext

* Message Box:
MESSAGEBOX("Hello World")
* Print to screen:
? "Hello World"
* GUI:
loForm = CREATEOBJECT("HiForm")
loForm.Show(1)
DEFINE CLASS HiForm AS Form
AutoCenter = .T.
Caption = "Hello World"
ADD OBJECT lblHi as Label ;
WITH Caption = "Hello World"
ENDDEFINE