September 2017 Update
This commit is contained in:
parent
bba7bfd280
commit
ba8067c3b7
14570 changed files with 153136 additions and 63871 deletions
8
Task/Variable-size-Get/Zkl/variable-size-get.zkl
Normal file
8
Task/Variable-size-Get/Zkl/variable-size-get.zkl
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
(123).len() //-->1 (byte)
|
||||
(0).MAX.len() //-->8 (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
|
||||
Dictionary("1",1, "2",2).len() //-->2 (keys)
|
||||
Data(0,Int,1,2,3,4).len() //-->4 (bytes)
|
||||
Data(0,String,"1","2","3","4").len() //-->8 bytes (ASCIIZ)
|
||||
Loading…
Add table
Add a link
Reference in a new issue