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

8 lines
147 B
Plaintext

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