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

12 lines
120 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
window 1
short i = 575
ptr j
j = @i
printf @"Address of i = %ld",j
print @"Value of i = ";peek word(j)
HandleEvents