This repository has been archived on 2026-05-05. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2026-05-02 22:15:25 -05:00

15 lines
582 B
EmacsLisp

// lang-grc.el - Ancient Greek NLG tests
// Expected: "ὁ ἄνθρωπος ὁράει τὸν κύνα." / "ὁ ἄνθρωπος ἐστί καλός."
fn test_assert() -> String {
return sem_realize(sem_frame_lang("assert", "ho anthropos", "horao", "", "grc"))
}
fn test_question() -> String {
return sem_realize(sem_frame_lang("query", "ho anthropos", "horao", "", "grc"))
}
fn test_describe() -> String {
return sem_realize(sem_frame_lang("describe", "ho anthropos", "kalos", "", "grc"))
}
println(test_assert())
println(test_question())
println(test_describe())