Updated with Shultz's new changes

This commit is contained in:
2018-10-22 12:38:06 -06:00
parent 0c712700cc
commit 3948b1c936
55 changed files with 92 additions and 122 deletions
Executable → Regular
+4 -2
View File
@@ -17,7 +17,9 @@ def main()
x1 = (-b - sqrt(disc) ) / (2*a)
x2 = (-b + sqrt(disc) ) / (2*a)
"x1: " print(x1) "\n"
"x2: " print(x2 ) "\n"
"x1: " print(x1) nl()
"x2: " print(x2 ) nl()
return 0
end