aboutsummaryrefslogtreecommitdiff
path: root/src/lib/run_program.rs
Commit message (Collapse)AuthorAgeFilesLines
* Downcase std modules again, move to :: for module dereferencingMarijn Haverbeke2011-05-121-0/+96
| | | | This should be a snapshot transition.
* Rename std modules to be camelcasedMarijn Haverbeke2011-05-061-96/+0
| | | | (Have fun mergining your stuff with this.)
* Remove effect system from src.Graydon Hoare2011-04-191-7/+7
|
* stdlib: Separate basic I/O reading functionality into a separate buf_reader ↵Patrick Walton2011-03-251-1/+1
| | | | object, like writing
* Switch all vases of vec += elt to vec += vec. Prohibit former in rustboot. ↵Graydon Hoare2011-03-161-2/+2
| | | | Tweak std lib vec fns in process.
* Add functionality for running external programs to the std libMarijn Haverbeke2011-03-141-0/+96
See lib/run_program.rs.