method

putc

v2_5_5 - Show latest stable - Class: ARGF
putc(p1)
public

If obj is Numeric, write the character whose code is the least-significant byte of obj. If obj is String, write the first character of obj to ios. Otherwise, raise TypeError.

$stdout.putc "A"
$stdout.putc 65

produces:

AA