blob: 14c72db834c759c99845079c0b1657b225aa636f [file] [log] [blame]
Mark Sleeefd37f12007-11-20 05:13:09 +00001Author: Patrick Collison <patrick@collison.ie>
2Last updated Nov 2007
3
4To get started, just file in thrift.st with Squeak, and run something like:
5
6sock := TSocket new host: 'localhost'; port: 9090; open.
7prot := TBinaryProtocol new transport: sock.
8calc := CalculatorClient new inProtocol: prot.
9calc addNum1: 10 num2: 15
10
11Tested in Squeak 3.7, but should work fine with anything later.