F # - Instrucción if anidada

Siempre es legal en la programación de F # anidar declaraciones if / then o if / then / else, lo que significa que puede usar una if o else if declaración dentro de otra if o else if declaración (s).

Sintaxis

if expr then
   expr
   if expr then
      expr
   else
      expr
else
   expr

Ejemplo

let a : int32 = 100
let b : int32 = 200

(* check the boolean condition using if statement *)

if (a = 100) then
(* if condition is true then check the following *)

   if (b = 200) then
      printfn "Value of a is 100 and b is 200\n"
printfn "Exact value of a is: %d" a
printfn "Exact value of b is: %d" b

Cuando compila y ejecuta el programa, produce el siguiente resultado:

Value of a is 100 and b is 200

Exact value of a is: 100
Exact value of b is: 200