feat: finish up generic match cases

This commit is contained in:
Kasey White
2022-12-12 21:34:32 -05:00
committed by KtorZ
parent e43063d447
commit d78e2c9c6f
3 changed files with 81 additions and 15 deletions

View File

@@ -7,5 +7,5 @@ pub fn repeat(x: a, n: Int) -> List(a) {
}
test repeat_1() {
repeat("aiken", 1) == ["aiken"]
repeat("aiken", 2) == ["aiken", "aiken"]
}