adding benchmarks

This commit is contained in:
Jason Paryani
2013-07-07 15:59:09 -07:00
parent 59beea5108
commit c44b5b3440
5 changed files with 336 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
@0x934efea7f017fff0;
struct Person {
id @0 :UInt32;
name @1 :Text;
email @2 :Text;
phones @3 :List(PhoneNumber);
struct PhoneNumber {
number @0 :Text;
type @1 :Type;
enum Type {
mobile @0;
home @1;
work @2;
}
}
}
struct AddressBook {
people @0 :List(Person);
}