mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-27 12:10:06 +08:00
16 lines
236 B
Plaintext
Vendored
16 lines
236 B
Plaintext
Vendored
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"
|