Initialize project

This commit is contained in:
2024-09-01 21:06:51 -05:00
parent 931ee74ae6
commit d79b09fb76
4 changed files with 44 additions and 1 deletions

12
test/star_rss_test.gleam Normal file
View File

@@ -0,0 +1,12 @@
import gleeunit
import gleeunit/should
pub fn main() {
gleeunit.main()
}
// gleeunit test functions end in `_test`
pub fn hello_world_test() {
1
|> should.equal(1)
}