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

@@ -381,7 +381,7 @@ class Parser:
self.__next_token() # skip ;
stmt.action = self.__parse_expression(PrecedenceType.P_LOWEST)
stmt.action = self.__parse_assignment_statement()
self.__next_token()