13 lines
256 B
Plaintext
13 lines
256 B
Plaintext
|
|
namespace Lib =
|
|
entrypoint foo() = ()
|
|
|
|
contract Remote =
|
|
public function foo : () => unit
|
|
function bla() = ()
|
|
|
|
contract Contract =
|
|
public function foo() = ()
|
|
public private stateful function all_the_things() = ()
|
|
private entrypoint wha() = ()
|