mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-11 20:02:09 +00:00
10 lines
119 B
Julia
10 lines
119 B
Julia
include("gilded_rose.jl")
|
|
|
|
if length(ARGS) > 0
|
|
days = parse(Int64, ARGS[1])
|
|
else
|
|
days = 2
|
|
end
|
|
|
|
main(days=days)
|