8 lines
92 B
Plaintext
8 lines
92 B
Plaintext
depend "tests/math.pla";
|
|
|
|
main = Func(): Int {
|
|
$print("%f\n", $sqrt(100.0));
|
|
return 0;
|
|
}
|
|
|