Variable size/Get: Difference between revisions

Content added Content deleted
m (syntax highlighting fixup automation)
No edit summary
Line 529: Line 529:
A single occupies 4 bytes
A single occupies 4 bytes
A double occupies 8 bytes
A double occupies 8 bytes
</pre>

=={{header|FutureBasic}}==
<syntaxhighlight lang="futurebasic">
include "NSLog.incl"

void local fn Doit
NSLog(@"%ld",sizeof(long))
end fn

fn DoIt

HandleEvents
</syntaxhighlight>
{{out}}
<pre>
8
</pre>
</pre>