blob: 426d2e1db101254b4bec407110ed8558ffcaf40f [file] [log] [blame]
library events;
interface AnimalPlanet {
1: Dog(string s, bool b);
2: Cat(string s) -> (bool b);
3: -> Bird(string s, bool b);
};