Sha256: 15c8ec1e328d485a5a3b9a9265b0ba54f42b4988c762641a112c8b2a37af2d21
Contents?: true
Size: 419 Bytes
Versions: 34
Compression:
Stored size: 419 Bytes
Contents
puts "If row (or column) is omitted for window placement," puts "the window will be screen-centered on one axis or both." w1 = RubyText.window(3, 21, r: 6, c: 9); w1.puts "Both row and column" sleep 1 w2 = RubyText.window(3, 21, r: 4); w2.puts "Row, no column" sleep 1 w3 = RubyText.window(3, 21, c: 4); w3.puts "Column, no row" sleep 1 w4 = RubyText.window(3, 21); w4.puts "No row, no column"
Version data entries
34 entries across 34 versions & 1 rubygems