golem-cli 1.3.1

Command line interface for Golem.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Test WIT covering two components, A and B, referencing each other.

package test:b;

interface api-b {
  enum typ-b {
    x, y, z
  }

  func-b: func() -> typ-b;
}

world b {
  export api-b;
}