fork download
  1. #!/usr/bin/perl
  2.  
  3. $chEmpty = '';
  4. $chSpace = ' ';
  5. printf("%s\n",($chEmpty == 0)? "true":"false");
  6. printf("%s\n",($chSpace == 0)? "true":"false");
  7. printf("%s\n",($chSpace == $chEmpty)? "true":"false");
Success #stdin #stdout 0s 4264KB
stdin
Standard input is empty
stdout
true
true
true