diff options
Diffstat (limited to 'aoc2019-gleam/src')
-rw-r--r-- | aoc2019-gleam/src/aoc2019_gleam.gleam | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/aoc2019-gleam/src/aoc2019_gleam.gleam b/aoc2019-gleam/src/aoc2019_gleam.gleam new file mode 100644 index 0000000..3ab0f4c --- /dev/null +++ b/aoc2019-gleam/src/aoc2019_gleam.gleam @@ -0,0 +1,5 @@ +import gleam/io + +pub fn main() { + io.println("Hello from aoc2019_gleam!") +} |