From 862b327b81a8f42975ea56f27527d0a072cd4abf Mon Sep 17 00:00:00 2001 From: "Ivan I. Ovchinnikov" Date: Fri, 10 Feb 2023 00:27:36 +0300 Subject: [PATCH] hello world --- src/world.erl | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 src/world.erl diff --git a/src/world.erl b/src/world.erl new file mode 100644 index 0000000..0ee2733 --- /dev/null +++ b/src/world.erl @@ -0,0 +1,4 @@ +-module(world). +-export([hello/0]). +% Скажем миру привет! +hello() -> io:format("Hello, world!~n").