aboutsummaryrefslogtreecommitdiff
path: root/interpreter/elymas
blob: b704a7a29e7cfbd913292f0bd71e3719c619f3e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env perl

use strict;
use warnings;

BEGIN {
  my $libPath = $0;
  $libPath =~ s!/?elymas$!!;
  push @INC, $libPath;
}

use Data::Dumper;
# $Data::Dumper::Deparse = 1;

use Elymas;
use ElymasGlobal;

executeFile($ARGV[0], $globalData, \$globalScope);