feat: Initial stemmer feature
Some checks failed
test / test (push) Has been cancelled

This commit is contained in:
2025-10-31 22:08:14 +00:00
parent 88550985e7
commit 4f470cdf26
8 changed files with 25827 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import gleeunit
pub fn main() -> Nil {
gleeunit.main()
}
// gleeunit test functions end in `_test`
pub fn hello_world_test() {
let name = "Joe"
let greeting = "Hello, " <> name <> "!"
assert greeting == "Hello, Joe!"
}