RosettaCodeData/Task/Send-an-unknown-method-call/FreeBASIC/send-an-unknown-method-call.basic
2023-07-01 13:44:08 -04:00

14 lines
237 B
Text

Type Example
foo As Integer Ptr
Declare Constructor (x As Integer)
End Type
Constructor Example(x As Integer)
This.foo = New Integer
*This.foo = 42 + x
End Constructor
Dim As Example result = 5
Print *result.foo
Sleep