diff options
| author | bors <bors@rust-lang.org> | 2013-03-29 01:09:49 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-03-29 01:09:49 -0700 |
| commit | 4e830d11bae450a7a630dcd66033b626e5488700 (patch) | |
| tree | 82a1669e417ba9a18fd7e8c4163c3dabd3710ce5 | |
| parent | 16445c5418e778a167ebacae22f058c03cba8ecb (diff) | |
| parent | ef56aa62fb4d672d04e5634bad001d427aa6b553 (diff) | |
| download | rust-4e830d11bae450a7a630dcd66033b626e5488700.tar.gz rust-4e830d11bae450a7a630dcd66033b626e5488700.zip | |
auto merge of #5618 : pcwalton/rust/print-in-prelude, r=brson
r? @brson
| -rw-r--r-- | src/libcore/prelude.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/libcore/prelude.rs b/src/libcore/prelude.rs index 0194e8f009c..9c3bf04b2a8 100644 --- a/src/libcore/prelude.rs +++ b/src/libcore/prelude.rs @@ -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; |
