Conditionelle prev
next

if (expr)
	block-1;
[ else
	block-2;]

Test multiple

switch(expr) {
	case 1:
		suite-d-instructions;
		[break;]
	case 'x':
		...
	default:
}

Ch. Tronche - Année 96-97 - Page 41