mirror of
https://github.com/mattrberry/crab.git
synced 2025-02-13 20:48:35 +01:00
17 lines
194 B
Crystal
17 lines
194 B
Crystal
![]() |
require "./crab/gba"
|
||
|
|
||
|
module Crab
|
||
|
VERSION = "0.1.0"
|
||
|
|
||
|
extend self
|
||
|
|
||
|
def run
|
||
|
gba = GBA.new ARGV[0]
|
||
|
gba.run
|
||
|
end
|
||
|
end
|
||
|
|
||
|
unless PROGRAM_NAME.includes?("crystal-run-spec")
|
||
|
Crab.run
|
||
|
end
|