summaryrefslogtreecommitdiffstats
path: root/test/Test.vala
blob: ce5da6d0ea0778decb2c2a4ba15201383f22d8f1 (plain)
1
2
3
4
5
6
7
8
9
namespace Eva {
  class Test {
    public static int main(string[] args) {
      Eva.Long term = new Eva.Long(42);
      
      return 0;
    }
  }
}