sqrt function works... finally... ;-;

This commit is contained in:
SpookyDervish
2025-10-18 19:28:54 +11:00
parent 70bc672885
commit 4bd698e330
8 changed files with 83 additions and 71 deletions

View File

@@ -1,3 +0,0 @@
add = Func(a: Int, b: Int): Int {
return a + b;
}

View File

@@ -1,5 +1,4 @@
depend "tests/math.pla";
main = Func(): Int {
return $add(1 ,2);
$print("%f\n", $sqrt(9.0));
return 0;
}