Preview:
function moreThanOneEtherV1() public view returns (bool) {
	if(msg.sender.balance > 1 ether) {
		return true;
	}
	return false;
}

function moreThanOneEtherV2() public view returns (bool) {
	if(msg.sender.balance > 10**18) {
		return true;
	}
	return false;
}
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter