RosettaCodeData/Task/Variable-size-Get/Vala/variable-size-get.vala

7 lines
179 B
Vala
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
void main(){
/* you can replace the int below with any of the vala supported datatypes
see the vala documentation for valid datatypes.
*/
print(@"$(sizeof(int))\n");
}