Packages

A library of extra functions for the standard Gleam libraries.

Current section

Files

Jump to
gl src gl.erl
Raw

src/gl.erl

-module(gl).
-compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch]).
-export([main/0]).
-spec main() -> nil.
main() ->
gleam@io:println(<<"Hello from gl!"/utf8>>).