const io from @'core/io'; let @main in { io.out('What\'s your name? '); let name = io.in(); io.out('Hello, '); io.out(name); io.out('!!'); }