alpha
Login
or
Join now
nandi.uk
/
gleam
Star
2
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Fork of daniellemaywood.uk/gleam — Wasm codegen work
Star
2
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
Update codespan reporting
author
Louis Pilfold
date
5 years ago
(Feb 6, 2021, 5:55 PM UTC)
commit
36815d9b
36815d9bb017bd288d56accf49a6bd4daf5ead76
parent
36b41246
36b4124623dbdb33cdcf5e62820987aa3f46c5b0
+10
2 changed files
Expand all
Collapse all
Unified
Split
test
errors
type_unify_int_string
gleam.toml
src
type_unify_int_string.gleam
+6
test/errors/type_unify_int_string/gleam.toml
View file
Reviewed
···
1
1
+
name = "type_unify_int_string"
2
2
+
3
3
+
# [docs]
4
4
+
# links = [
5
5
+
# { title = 'GitHub', href = 'https://github.com/username/project_name' }
6
6
+
# ]
+4
test/errors/type_unify_int_string/src/type_unify_int_string.gleam
View file
Reviewed
···
1
1
+
pub fn hello_world() {
2
2
+
let x: Int = "Eh?"
3
3
+
x
4
4
+
}