A code formatter for Julia with rules set in stone.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

11 lines
271 B

using Runic: Runic
# Compileable main function corresponding to `int main(int argc, char** argv)`
function @main(args::Vector{String})::Cint
if length(args) == 1
Runic.print_help()
return 0
else
return Runic.main(args[2:end])
end
end