RosettaCodeData/Task/Conditional-structures/Deluge/conditional-structures.deluge

8 lines
147 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
if (input.Field == "Hello World") {
sVar = "good";
} else if (input.Field == "Bye World") {
sVar = "bad";
} else {
sVar = "neutral";
}