fork download
  1. p /a{3}/ === "aaa"
  2. p /a{3}?/ === "aaa"
  3. p /a{3}/ === ""
  4. p /a{3}?/ === ""
  5.  
Success #stdin #stdout 0.02s 7456KB
stdin
Standard input is empty
stdout
true
true
false
true