// uri.vala // // valac --pkg gnet-2.0 uri.vala && ./uri void main (string[] args) { var uri = new GNet.URI("http://antono.info:80/"); debug("HOST: %s", uri.hostname); debug("PORT: %d", uri.port); } // valac --pkg gnet-2.0 uri.vala && ./uri // ** (process:16111): DEBUG: uri.vala:7: HOST: antono.info // ** (process:16111): DEBUG: uri.vala:8: PORT: 80 // Segmentation fault (core dumped)