Kevin Flansburg f3eb1eb535
Experimental RPC Support (#551)
* Prototyping

* rpc client example

* Prototype WIT codegen

* Documentation

* Final tweaks
2024-04-28 18:44:12 -04:00

6 lines
120 B
Plaintext

package rpc:calculator;
interface calculator {
// Add two unsigned integers
add: func(a: u32, b: u32) -> u32;
}