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
// Example of a component that calls itself

package test:a;

interface api-a {
  record typ-a {
    field1: bool
  }

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

world a {
  export api-a;
}