mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			211 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			211 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| contract test {
 | |
|     constructor() payable {}
 | |
| 
 | |
|     function getBalance() public returns (uint256 balance) {
 | |
|         return address(this).balance;
 | |
|     }
 | |
| }
 | |
| // ----
 | |
| // constructor(), 23 wei ->
 | |
| // getBalance() -> 23
 |