From 94de356834be40b1e14c85a016a2e0a9f1768053 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Sun, 11 Jul 2010 08:28:49 +0200 Subject: Added support for parsing strings to complex terms --- test/Test.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') diff --git a/test/Test.vala b/test/Test.vala index 86907ea..85afc6a 100644 --- a/test/Test.vala +++ b/test/Test.vala @@ -3,7 +3,7 @@ namespace Eva { public static int main(string[] args) { MainLoop main = new MainLoop(); - Eva.PacketHandler handler = new Eva.PacketHandler(new UnixInputStream(3, true), new UnixOutputStream(4, true), 4); + 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(); -- cgit v1.2.3