1 2 3 4 5 6 7 8 9 10 11 12 13
package local:test; interface math { add: func(a: s32, b: s32) -> s32; multiply: func(a: s32, b: s32) -> s32; } world imports { import math; // Export that uses the import export double-add: func(a: s32, b: s32) -> s32; }