Files
hello-world/v/VisualFoxPro.prg
MrBrain295 085c8bfbe3 Update VisualFoxPro.prg
I need to do this to migrate to double quotes
2021-08-18 14:04:28 -05:00

16 lines
237 B
Plaintext

MESSAGEBOX("Hello World")
? "Hello World"
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