Files
Plasma/tests/test.pla

8 lines
92 B
Plaintext
Raw Normal View History

depend "tests/math.pla";
2025-10-18 07:21:19 +11:00
main = Func(): Int {
$print("%f\n", $sqrt(100.0));
2025-10-18 19:28:54 +11:00
return 0;
}