Ms
/
havas
forked from ScraaapYard/havas
1
0
Fork 0

resolve merge conflict

This commit is contained in:
Ms 2023-09-08 11:39:31 +05:30
commit 10c45bbc67
1 changed files with 8 additions and 1 deletions

View File

@ -13,7 +13,7 @@ def flag_exec(flag)
when "--version"
puts "Havas version 0.0.1"
when "-"
repl
when "--help"
puts help
else
@ -27,3 +27,10 @@ end
if cli_ARGS.length == 0 then flag_exec 0 end
cli_ARGS.each{|flag| if flag[0]=='-' then flag_exec flag end}
def repl()
while true do
puts ">>>>>>"
eval("puts 'hie'")
end
end