class MyExe {
  use MyExe::Precompile;
  use TestCase::NativeAPI2;
  use Unicode;
  
  static method main : int ($start_file : string, $args : string[]) {
    my $sum = MyExe::Precompile->sum(1, 2);
    my $ret1 = TestCase::NativeAPI2->src_foo;
    my $ret2 = TestCase::NativeAPI2->src_bar;
    
    my $ret3 = MyExe::Precompile->anon_method_sum;
    
    my $ret4 = Unicode->uchar_to_utf8(13);
    
    print "AAA $start_file $sum $ret1 $ret2 $ret3 $args->[0] $args->[1]\n";
  }
}