Packages
textto3dworld_org
0.1.0
textto3dworld.org website backlink helper. Visit https://www.textto3dworld.org for more information.
Current section
Files
Jump to
Current section
Files
lib/textto3dworld_org.ex
defmodule Textto3dworldOrg do
@moduledoc """
textto3dworld.org website backlink helper package.
Visit [https://www.textto3dworld.org](https://www.textto3dworld.org) for more information.
"""
@version "0.1.0"
@website "https://www.textto3dworld.org"
def version, do: @version
def website, do: @website
def info do
%{
name: "Textto3dworldOrg",
version: @version,
website: @website,
description: "textto3dworld.org website backlink helper package."
}
end
def hello do
IO.puts("Welcome! Visit ")
:ok
end
end