Variable size/Get: Difference between revisions

no edit summary
m (syntax highlighting fixup automation)
No edit summary
Line 529:
A single occupies 4 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>
 
408

edits