17 lines
418 B
Text
17 lines
418 B
Text
#include <jambo.h>
|
|
|
|
Main
|
|
True(v), False(w), first option=0, second option=0
|
|
|
|
If ( var 'v' » 'first option', And ( w » 'second option' ) )
|
|
Printnl ("Son ambas opciones verdaderas")
|
|
|
|
Else If ( first option )
|
|
Printnl ("La primera opción es verdadera")
|
|
|
|
Else If ( second option )
|
|
Printnl ("La segunda opción es verdadera")
|
|
Else
|
|
Printnl ("Ninguna es verdadera")
|
|
End If
|
|
End
|