Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ar={ger="ando",inf="ar",par="ado",
- indicativo={
- presente={"o","as","a","amos","áis","an"},
- preterito_imperfecto={"aba","abas","aba","abamos","abais","aban"},
- }
- }
- er={}
- ir={}
- verb = os.osk("","",100,100,0)
- verb = string.sub(verb,1,#verb-2)
- while true do
- controls.read()
- if controls.press("cross") then
- verb= os.osk("","",100,100,0)
- verb=string.sub(verb,1,#verb-2)
- end
- screen.print(10,30,"Presente")
- screen.print(100,30,"Pretérito imperfecto")
- for i = 1, 6 do
- screen.print(10,30+i*15,verb..ar.indicativo.presente[i])
- screen.print(100,30+i*15,verb..ar.indicativo.preterito_imperfecto[i])
- end
- if controls.select() then a() end
- screen.flip()
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement