mirror of
https://github.com/samsonjs/csc360-a1-shell.git
synced 2026-03-25 08:45:52 +00:00
6 lines
131 B
Ruby
Executable file
6 lines
131 B
Ruby
Executable file
#!/usr/bin/env -S ruby -w
|
|
|
|
require "English"
|
|
require_relative "shell"
|
|
|
|
Shell::CLI.new.run(args: ARGV) if $PROGRAM_NAME == __FILE__
|