Skip to content

Commit

Permalink
Showing 2 changed files with 5 additions and 19 deletions.
19 changes: 0 additions & 19 deletions spec/truffle/tags/core/kernel/putc_tags.txt

This file was deleted.

5 changes: 5 additions & 0 deletions truffle/src/main/ruby/core/rubinius/common/kernel.rb
Original file line number Diff line number Diff line change
@@ -291,6 +291,11 @@ def p(*a)
end
module_function :p

def putc(int)
$stdout.putc(int)
end
module_function :putc

def puts(*a)
$stdout.puts(*a)
nil

0 comments on commit 0c52ae9

Please sign in to comment.