6 lines
78 B
Julia
6 lines
78 B
Julia
// passing doubles to printInt().
|
|
|
|
int main() {
|
|
printInt(1.0);
|
|
return 0 ;
|
|
}
|