Current section
Files
Jump to
Current section
Files
lib/progress_bar.ex
defmodule ProgressBar do
def render(current..total) do
bar = String.duplicate("=", current)
blank = String.duplicate(" ", total - current)
IO.write "\r|#{bar}#{blank}|"
end
def done do
IO.write "\n"
end
end