Initial Commit
Some checks failed
test / test (push) Has been cancelled

This commit is contained in:
2025-10-17 21:59:17 +01:00
parent e1faecce11
commit 5125f08562
7 changed files with 364 additions and 2 deletions

13
test/dllist_test.gleam Normal file
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!"
}