Fork of daniellemaywood.uk/gleam — Wasm codegen work
2

Configure Feed

Select the types of activity you want to include in your feed.

Update codespan reporting

+10
+6
test/errors/type_unify_int_string/gleam.toml
··· 1 + name = "type_unify_int_string" 2 + 3 + # [docs] 4 + # links = [ 5 + # { title = 'GitHub', href = 'https://github.com/username/project_name' } 6 + # ]
+4
test/errors/type_unify_int_string/src/type_unify_int_string.gleam
··· 1 + pub fn hello_world() { 2 + let x: Int = "Eh?" 3 + x 4 + }