Conditionals
Learn how to write conditional statements in Kognitos.
if {condition} then
{do an action}if the number of team members < 10 then
send "Let's have lunch outside!" to the team membersif {condition} then
{do an action}
else
{do a different action}if the number of team members < 10 then
send "Let's have lunch outside!" to the team members
else
send "Meet you in the cafeteria!"Last updated
Was this helpful?

