Fix: variable to have VarInfo instead of Type

This commit is contained in:
Shunsuke Shibayama 2022-10-18 00:25:47 +09:00
parent 119a326ebb
commit 46b87e1ca3
29 changed files with 888 additions and 816 deletions

View file

@ -62,6 +62,9 @@ class Bool(Nat):
def __repr__(self) -> str:
return self.__str__()
class Str(str):
pass
class Range:
def __init__(self, start, end):
self.start = start

View file

@ -1 +0,0 @@
.run!: (args: Str,) => NoneType