libcore: Add print and println to the prelude

This commit is contained in:
Patrick Walton 2013-03-28 19:12:48 -07:00
parent 36909c7575
commit ef56aa62fb

View File

@ -21,6 +21,10 @@ pub use ops::{Shl, Shr, Index};
pub use option::{Option, Some, None};
pub use result::{Result, Ok, Err};
/* Reexported functions */
pub use io::{print, println};
/* Reexported types and traits */
pub use clone::Clone;