mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-03 03:56:52 -04:00
16 lines
236 B
Gleam
16 lines
236 B
Gleam
|
|
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"
|