Help for this page
switch (val) { case 1 : handle_case1; break; ... case 10: handle_case10; default: handle_default; }
if (val == 1) { handle_case1; ... CASE10: handle_case10; DEFAULT: handle_default; }