pragma solidity >=0.5.0 <0.7.0;
contract FreedomOfChoice {
function makeChoice(bool choice) public pure returns (string memory) {
if (choice) {
return "You have chosen freedom.";
} else {
return "You have chosen bondage.";
}
}
}