20 lines
355 B
Text
20 lines
355 B
Text
using System;
|
|
using System.Console;
|
|
|
|
module UseIf2
|
|
{
|
|
Main() : void
|
|
{
|
|
def happy = true;
|
|
def knowit = false;
|
|
|
|
if2 (happy) (knowit)
|
|
Write("Clap hands")
|
|
elseTF
|
|
Write("You're happy")
|
|
elseFT
|
|
Write("Cheer up")
|
|
else
|
|
Write("You're unhappy, cheer up");
|
|
}
|
|
}
|