7 lines
179 B
Vala
7 lines
179 B
Vala
|
|
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");
|
||
|
|
}
|