summaryrefslogtreecommitdiffstats
path: root/test/Test.vala
blob: 85afc6a3e6acb4c2e29a0172ea2f3e8838322a0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace Eva {
  class Test {
    public static int main(string[] args) {
      MainLoop main = new MainLoop();
      
      PacketHandler handler = new PacketHandler(new UnixInputStream(3, true), new UnixOutputStream(4, true), 4);
      handler.received_term.connect((term) => {stdout.printf("Received term %s\n", term.to_string()); handler.send(term); main.quit();});
      handler.start();
      
      main.run();
      
      return 0;
    }
  }
}