Soliditas fungsi murni

pragma solidity ^0.8.13;
contract MySmartContract {
address public owner;
constructor() {
owner= msg.sender;
}
//Function Pure doesn't need a previous declaration!
function isThisAPureFunction() pure public returns(bool) {
return true;
}
}
Daedalus Lux