RosettaCodeData/Task/Address-of-a-variable/FutureBasic/address-of-a-variable.futurebasic

10 lines
136 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
include "ConsoleWindow"
dim as short i : i = 575
dim as ptr j : j = NULL
j = @i
print "Adddress of i ="; j
print "Value of i ="; [j]