mirror of
https://github.com/fluencelabs/aqua.git
synced 2025-03-15 19:50:51 +00:00
* functions that only return literal, don't parse top-bottom * empty funcOp to FuncOps * version * fix
11 lines
202 B
Plaintext
11 lines
202 B
Plaintext
service Op("op"):
|
|
noop: -> ()
|
|
bz: string -> string
|
|
|
|
func return_none() -> string:
|
|
<- "some result in string"
|
|
|
|
func use() -> string:
|
|
res <- return_none()
|
|
res2 <- Op.bz(res)
|
|
<- res |