Gleam indentation tests

This commit is contained in:
Connor Lay (Clay) 2022-02-12 15:12:05 -08:00 committed by Stephan Seitz
parent 4a5720332d
commit b62750e328
16 changed files with 239 additions and 0 deletions

View file

@ -0,0 +1,15 @@
import gleam/io
pub fn main() {
io.println("Hello from main!")
}
fn hidden() {
io.println("Hello from hidden!")
}
pub external fn inspect(a) -> a =
"Elixir.IO" "inspect"
external fn inspect(a) -> a =
"Elixir.IO" "inspect"