We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6261004 commit c0ec9e7Copy full SHA for c0ec9e7
src/core/IO.nqp
@@ -189,17 +189,17 @@ sub spew($filename, $contents) {
189
}
190
191
sub print(*@args) {
192
- nqp::print(join('', @args));
+ stdout().print(join('', @args));
193
1;
194
195
196
sub say(*@args) {
197
- nqp::say(join('', @args));
+ stdout().say(join('', @args));
198
199
200
201
sub note(*@args) {
202
- nqp::sayfh(nqp::getstderr(), join('', @args));
+ stderr().say(join('', @args));
203
204
205
0 commit comments