Conjugate a Latin verb: Difference between revisions

(add BQN)
Line 684:
  audiunt  they hear
</pre>
 
=={{header|Phixmonti}}==
<syntaxhighlight lang="Phixmonti">/# Rosetta Code problem: http://rosettacode.org/wiki/Conjugate_a_Latin_verb
by Galileo, 10/2022 #/
 
include ..\Utilitys.pmt
 
( ( "are" "ere" "ire" )
( ( "o" "as" "at" "amus" "atis" "ant" )
( "o" "is" "it" "imus" "itis" "unt" )
( "io" "is" "it" "imus" "itis" "iunt" ) ) )
 
( "amare" "ducere" "audire" ) len for
get dup print ":" ?
len 2 - snip swap >ps rot swap
getd
len for
get tps swap chain ?
endfor
cps drop swap nl
endfor
</syntaxhighlight>
 
{{out}}<pre>amare:
amo
amas
amat
amamus
amatis
amant
 
ducere:
duco
ducis
ducit
ducimus
ducitis
ducunt
 
audire:
audio
audis
audit
audimus
auditis
audiunt
 
 
=== Press any key to exit ===</pre>
 
=={{header|Python}}==
Line 709 ⟶ 758:
for infinitive in ("amare", "dare", "qwerty", "are"):
conjugate(infinitive)</syntaxhighlight>
 
 
=={{header|Raku}}==
57

edits