Files
china-dictatorship/hello-world/v/VisualFoxPro.prg

18 lines
277 B
Plaintext
Raw Normal View History

2021-03-24 00:00:01 +00:00
* 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