Skip to content

Instantly share code, notes, and snippets.

@ayeshLK
Created January 4, 2022 19:50
Show Gist options
  • Save ayeshLK/8292c2f819ba3f4231a16d62a91e3b5e to your computer and use it in GitHub Desktop.
Save ayeshLK/8292c2f819ba3f4231a16d62a91e3b5e to your computer and use it in GitHub Desktop.
function dayOfTheWeek(int date) returns string {
match date {
1 => {
return "Monday";
}
2 => {
return "Tuesday";
}
3 => {
return "WednesDay";
}
4 => {
return "Thursday";
}
5 => {
return "Friday";
}
6 => {
return "Saturday";
}
// default clause
_ => {
return "Sunday";
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment