fork download
  1. puts "true" if /[\b]/.match("\b")
  2. puts "true" if /\x08/.match("\b")
  3. puts "true" if /\010/.match("\b")
Success #stdin #stdout 0.01s 6228KB
stdin
Standard input is empty
stdout
true
true
true