7 lines
147 B
Text
7 lines
147 B
Text
if (input.Field == "Hello World") {
|
|
sVar = "good";
|
|
} else if (input.Field == "Bye World") {
|
|
sVar = "bad";
|
|
} else {
|
|
sVar = "neutral";
|
|
}
|