Variable size/Get: Difference between revisions

m
(Added FreeBASIC)
Line 1,181:
=={{header|zkl}}==
<lang zkl>(123).len() //-->1 (byte)
(12345678900).MAX.len() //-->48 (bytes), ie the max number of bytes in an int
(1.0).MAX.len() //-->8 (bytes), ie the max number of bytes in an float
"this is a test".len() //-->14
L(1,2,3,4).len() //-->4
Anonymous user