6 lines
79 B
Python
6 lines
79 B
Python
|
|
from Parser import Parser
|
|
|
|
def parse(input):
|
|
return Parser(input).parse()
|