initial commit
Some checks failed
test / test (push) Has been cancelled

This commit is contained in:
2025-09-26 16:26:11 +01:00
commit a1ceec90da
12 changed files with 1511 additions and 0 deletions

16
test/scratch.gleam Normal file
View File

@@ -0,0 +1,16 @@
import gleam/string
import gleam/time/calendar
import gltoml
pub fn main() {
calendar.Date(25, calendar.March, 2025)
|> echo
|> calendar.is_valid_date
|> echo
gltoml.parse(
//"#hello\n 'a.b' = '1'\nc = true\ng=2025-03-25T10:03:23.500000000+01:00\nh=12308_123\ni=-2\nf = 0o751\nd=0b1_1_0_1\ne=0x1ab_4ef\nj=-nan\nk=1.5e2",
// "tab = { inner.table = [{}], inner.table.val = \"bad\" }",
"a = { a.b = 1 }",
)
|> echo
}