add vrlp project

This commit is contained in:
2023-07-06 11:08:25 -06:00
parent 6c80c37efa
commit 754a3faf89
6 changed files with 77 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
%%% @doc
%%% Vanillae Recursive Length Prefix: vrlp
%%%
%%% This module is currently named `vrlp', but you may want to change that.
%%% Remember that changing the name in `-module()' below requires renaming
%%% this file, and it is recommended to run `zx update .app` in the main
%%% project directory to make sure the ebin/vrlp.app file stays in
%%% sync with the project whenever you add, remove or rename a module.
%%% @end
-module(vrlp).
-vsn("0.1.0").
-author("Peter Harpending <peter.harpending@gmail.com>").
-copyright("Peter Harpending <peter.harpending@gmail.com>").
-license("ISC").
-export([hello/0]).
-spec hello() -> ok.
hello() ->
io:format("~p (~p) says \"Hello!\"~n", [self(), ?MODULE]).