Use Bakeware to create standalone binary

This commit is contained in:
2024-05-11 10:37:52 +02:00
parent 4e84fcd52f
commit 0d8d09d392
4 changed files with 35 additions and 35 deletions

View File

@@ -1,18 +1,9 @@
defmodule FindOldMp3s do
@moduledoc """
Documentation for `FindOldMp3s`.
"""
defmodule FindOldMp3s.Main do
use Bakeware.Script
@doc """
Hello world.
## Examples
iex> FindOldMp3s.hello()
:world
"""
def hello do
:world
@impl Bakeware.Script
def main(_args) do
IO.puts "Hello, World!"
0
end
end