RosettaCodeData/Task/Variable-size-Get/Vala/variable-size-get.vala
Ingy döt Net 68f8f3e56b all tasks
2013-04-11 01:07:29 -07:00

5 lines
210 B
Vala

void main(){
ulong x = sizeof(int); // returns # of bytes used to store an int
// is returned as a ulong, but could be typecasted to int with: int x = (int) sizeof(int)
stdout.printf("%lu\n", x);
}