Concept Framework 2.2 documentation | Contents | Index |
Name | Version | Deprecated |
uint64 | version 1.0 | no |
number uint64(number) |
Gets the 64 bits unsigned integer value of a number. |
import standard.C.casts class Main { function Main() { var decimal_number=-12.345; var a_number=12337500087987979123123; echo "The 64 bit unsigned representation of " + decimal_number + " is "; echo uint64(decimal_number); echo "\n"; echo "The 64 bit representation of " + a_number + " is "; echo int64(a_number); echo "\n"; } } |
Documented by Simona Gabriela Plesuvu, generation time: Sun Jan 27 18:15:13 2013 GMT | (c)2013 Devronium Applications |