simpler t_print

This commit is contained in:
Yukihiro "Matz" Matsumoto
2015-12-26 22:46:54 +09:00
parent ee3fa1be49
commit 4fdec33ff4
+1 -5
View File
@@ -10,11 +10,7 @@ def t_print(*args)
len = args.size
while i < len
str = args[i].to_s
begin
__printstr__ str
rescue NoMethodError
__t_printstr__ str rescue print str
end
__t_printstr__ str
i += 1
end
end