This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | %00 | |
| %00/ | |
| %2E%2E/%2E%2E/%2E%2E/%2E%2E/%2E%2E/windows/win.ini | |
| %2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/etc/passwd | |
| %2e/ | |
| %2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd | |
| %2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f../boot.ini | |
| %2f/ | |
| %3f.jsp | |
| %5c%2e%2e%5c%2e%2e%5c%2e%2e%5c%2e%2e%5cwinnt%5cwin.ini | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // SPDX-License-Identifier: GPL-3.0 | |
| pragma solidity 0.8.0; | |
| contract MyContract { | |
| int public num = 5; | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // SPDX-License-Identifier: GPL-3.0 | |
| pragma solidity 0.8.0; | |
| contract MyContract { | |
| int public num = 5; | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // SPDX-License-Identifier: GPL-3.0 | |
| pragma solidity 0.8.0; | |
| contract MyContract { | |
| int public num = 5; | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | REMIX DEFAULT WORKSPACE | |
| Remix default workspace is present when: | |
| i. Remix loads for the very first time | |
| ii. A new workspace is created | |
| iii. There are no files existing in the File Explorer | |
| This workspace contains 3 directories: | |
| 1. 'contracts': Holds three contracts with different complexity level, denoted with number prefix in file name. | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // SPDX-License-Identifier: GPL-3.0 | |
| pragma solidity 0.8.0; | |
| contract Adder { | |
| function add(uint a,uint b) external pure returns(uint){ | |
| return a+b; | |
| } | |
| function add(uint a, uint b, uint c) external pure returns(uint){ | |
| return a+b+c; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // SPDX-License-Identifier: GPL-3.0 | |
| pragma solidity 0.8.0; | |
| contract Adder { | |
| function add(uint a,uint b) external pure returns(uint){ | |
| return a+b; | |
| } | |
| function add(int a, int b) external pure returns(int){ | |
| return a+b; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // SPDX-License-Identifier: GPL-3.0 | |
| pragma solidity 0.8.0; | |
| // Creating a contract | |
| contract Animal { | |
| function eat() public pure returns(string memory){ | |
| return "I can eat."; | |
| } | |
| function sleep() public pure returns(string memory){ | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // SPDX-License-Identifier: GPL-3.0 | |
| pragma solidity 0.8.0; | |
| // Creating a contract | |
| contract DC | |
| { | |
| bytes8 public hero = "batman"; | |
| } | |
| //output | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // SPDX-License-Identifier: GPL-3.0 | |
| pragma solidity 0.8.0; | |
| // Creating a contract | |
| contract DC | |
| { | |
| string public hero = "batman"; | |
| string public villain = 'joker'; | |
| } | 
NewerOlder