% touch hello.go && ed hello.go
0
a
package main
import "io/ioutil"
func main() {
code := "print('Hello, world.\\nGoodbye, C?\\n')\n"
ioutil.WriteFile("hello.py", []byte(code), 0644)
}
.
wq
159
% go run hello.go && python hello.py
Hello, world.
Goodbye, C?
% ❚