Hello list, > > Is it possible to run external programs from neko? In particular, > I'd like to be able to spawn a process and get some control over its > stdin and stdout. Currently I need that to send mail via sendmail > using mtwin mail library for haXe.
You can run system commands but you cannot currently process their stdin/stdout synchronously. For mail sending, you can directly use mtwin.mail.Smtp to connect to a server and send mail from your haXe program without using sendmail. Nicolas -- Neko : One VM to run them all (http://nekovm.org)
