我需要写字 如何编写脚本来显示char' A'在控制台中。
puts 'A' without new line
或其他方式
答案 0 :(得分:1)
这很简单
print "A\n" with new line
print "A" without
乳宁 $ ruby filename.rb
$ ruby -e“print'A'”
$ ruby -e“print 65.chr”
$irb
>print 'A'.encode('utf-8')
$ stdout.print“A”