Documentation
1
2
3
4
5
6
7
package examples:basic-map;
interface basic-map-service {
    map-fn: func(input: string) -> result<string,string>;
}
world basic-map-world {
    export basic-map-service;    
}