fork download
  1. crlf = "2ch\r\n"
  2. lf = "2ch\n"
  3. regex = /^2ch$/
  4. p regex =~ crlf
  5. p regex =~ lf
Success #stdin #stdout 0.02s 9720KB
stdin
Standard input is empty
stdout
nil
0