#!/usr/bin/perl -w use strict; use lib "lib"; if (@ARGV and $ARGV[0] eq "cli") { require Games::Math::CLI; Games::Math::CLI->run; } else { require Games::Math::Glade; Games::Math::Glade->new->init->run; }