initial commit

main
lambda 1 year ago
parent de1133bd21
commit 4e7bd8dcff

@ -1,2 +0,0 @@
# alleycat-erlang

@ -0,0 +1,3 @@
* Alleycat Erlang
Web based game engine for alleycat games

@ -0,0 +1,14 @@
-module(useless).
-export([add/2, hello/0 ,greet_and_add_two/1]).
add(A,B) ->
A + B.
%% Shows greetings
%% io:format/1 is a standart function for text output
hello () ->
io:format("Hello World!~n").
greet_and_add_two(X) ->
hello(),
add(X,2).
Loading…
Cancel
Save