hello world

This commit is contained in:
Ivan I. Ovchinnikov 2023-02-10 00:27:36 +03:00
parent 1f2379923a
commit 862b327b81
1 changed files with 4 additions and 0 deletions

4
src/world.erl Normal file
View File

@ -0,0 +1,4 @@
-module(world).
-export([hello/0]).
% Скажем миру привет!
hello() -> io:format("Hello, world!~n").