fork download
  1. #include <iostream>
  2.  
  3.  
  4. int main()
  5. {
  6. int someVar = 10;
  7.  
  8.  
  9. {
  10. int someVar = 20;
  11.  
  12. std::cout << someVar << std::endl;
  13. }
  14. }
Success #stdin #stdout 0s 3460KB
stdin
Standard input is empty
stdout
20