12 lines
174 B
Python
12 lines
174 B
Python
from src.errol import Errol
|
|
|
|
print('loading...')
|
|
errol = Errol()
|
|
|
|
sentence = ''
|
|
while sentence != 'exit':
|
|
sentence = input("oui ?")
|
|
print(errol.answer(sentence))
|
|
|
|
|
|
|