1package docs:calculator;
2
3interface host {}
4
5world plugin {
6    import host;
7
8    export get-plugin-name: func() -> string;
9    export evaluate: func(x: s32, y: s32) -> s32;
10}