/ This is the header file If i try to get input , it is not comparing it./
bool read_boolean(string prompt) {
string result;
result = read_string(prompt);
string to_lowercase(const string &text);
if (result == "yes" or "y")
{
write_line("Value is updated");
}
else if (result == "no" or "n")
{
write_line("false");
}
return 0;
}