STD not working

BlitzMax Forums/BlitzMax Programming/STD not working

plash(Posted 2006) [#1]
I get 'notta when I try the example below. Am I being an idiot or is this just completely wrong?

in.bmx
Local Proc:TProcess = CreateProcess("out.exe", 1)
		Delay(1000)
TerminateProcess(Proc)
Proc.Close()
	
Print(ReadStdin())

Input()
End


out.bmx
WriteStdout("Hello 'in'!")