mirror of
https://github.com/fluencelabs/aqua-playground
synced 2025-05-30 12:31:33 +00:00
11 lines
196 B
Plaintext
11 lines
196 B
Plaintext
|
data InnerObj:
|
||
|
arr: []string
|
||
|
num: u32
|
||
|
|
||
|
data SomeObj:
|
||
|
str: string
|
||
|
num: u64
|
||
|
inner: InnerObj
|
||
|
|
||
|
func getObj() -> SomeObj:
|
||
|
<- SomeObj("some str", 5, InnerObj(["a", "b", "c"], 6))
|