aqua/aqua-src/antithesis.aqua

14 lines
226 B
Plaintext
Raw Normal View History

2023-11-02 02:23:50 +00:00
aqua A
2023-11-02 02:23:50 +00:00
export newFunc
2023-11-02 02:23:50 +00:00
func returnNil() -> *string:
someStr: *string
<- someStr
func newFunc() -> []string:
-- new stream
stream <- returnNil() -- stream -> someStr: *str
stream <<- "asd"
<- stream
-- end