2009-01-14 20:51:17 +00:00
|
|
|
/*
|
|
|
|
NOTE: This file is not used - it is here just for reference. The
|
|
|
|
real module is defined internally in io.d.
|
|
|
|
*/
|
|
|
|
|
|
|
|
module io;
|
|
|
|
|
2009-02-08 18:41:03 +00:00
|
|
|
// Write to console, with or without a newline
|
2009-01-14 20:51:17 +00:00
|
|
|
native write(char[][] args...);
|
|
|
|
native writeln(char[][] args...);
|
2009-02-08 18:41:03 +00:00
|
|
|
|
|
|
|
// Automatically inserts spaces between arguments
|
2009-01-14 20:51:17 +00:00
|
|
|
native writes(char[][] args...);
|
|
|
|
native writelns(char[][] args...);
|
2009-02-08 18:41:03 +00:00
|
|
|
|
|
|
|
// Identical to writelns
|
2009-01-14 20:51:17 +00:00
|
|
|
native print(char[][] args...);
|