Add: Parser + test

This commit is contained in:
Jonas Zeunert
2024-04-27 14:21:55 +02:00
parent de6753ce3a
commit 20a6b12642
4 changed files with 69 additions and 41 deletions

View File

@@ -1,3 +1,8 @@
class Converter:
def __init__(self):
None
input = ""
def __init__(self, input: str):
self.input = input
def convert(self) -> str:
return ""