Conjugate a Latin verb: Difference between revisions

Easylang
(Easylang)
Line 242:
"audire" ⟨ "audio" "audis" "audit" "audimus" "auditis" "audiunt" ⟩
┘</syntaxhighlight>
 
=={{header|EasyLang}}==
<syntaxhighlight lang="easylang">
proc conj inf$ . .
if substr inf$ len inf$ - 2 -1 <> "are"
print "Not a first conjugation verb."
return
.
stem$ = substr inf$ 1 len inf$ - 3
if stem$ = ""
print "Stem cannot be empty."
return
.
print "Present indicative tense of " & inf$ & ":"
for en$ in [ "o" "as" "at" "amus" "atis" "ant" ]
print stem$ & en$
.
.
for s$ in [ "amare" "dare" ]
conj s$
print ""
.
</syntaxhighlight>
 
=={{header|EMal}}==
1,981

edits