view samples/sock.tp @ 226:6055f56d0e45

Implement all the binary operators except and/or/xor in grammar
author Michael Pavone <pavone@retrodev.com>
date Sun, 29 Dec 2013 14:56:46 -0800
parents 4c96a393103e
children
line wrap: on
line source

#{
	main <- {
		sock <- socket connectTo: "127.0.0.1" onPort: 12345
		sock send: "Hello, Socket!\n"
		response <- sock recv: 1024
		print: (string: response)
		sock close
		0
	}
}