// UdK Computational design // Marius Watz 2003 // http://www.evolutionzone.com/udk/ // // UDK04_00_conditionals // // All possible conditions int x=100; int y=200; if(x==100) println("x is 100"); if(x!=200) println("x is not 200"); if(x==100 && y==200) println("x is 100 and y is 200"); x=50; y=199; if(x==50 || y==200) println("either x is 50 or y is 200");