Code in question ``` fun main() { def a: str = "helloo\n"; def c: *str = &a; write(c); } main() ```
Code in question