i need to know how share variable between two program,
basically the go program have to write a variable ,like a string, and the python program have to read this variable.
Please help me, thank you in advance.
i need to know how share variable between two program, basically the go program
Share
use standard streams. use a simple
printftype command to print the string to stdout. then read it with araw_input()in python.run the two programs like so:
./output | ./read.py