RosettaCodeData/Task/Conditional-structures/Deluge/conditional-structures.deluge
2023-07-01 13:44:08 -04:00

7 lines
147 B
Text

if (input.Field == "Hello World") {
sVar = "good";
} else if (input.Field == "Bye World") {
sVar = "bad";
} else {
sVar = "neutral";
}