Exemplo n.º 1
0
def main():
    t1 = 5 < 9
    if t1: goto.L1
    goto.L2

    label.L1
    C3D.eje_if = "Verdadero"
    C3D.pila = 0
    C3D.ejecutar()  #Crear Base de datos

    goto.L3

    label.L2
    C3D.eje_if = "Else"
    C3D.pila = 0
    C3D.ejecutar()  #Crear Base de datos

    label.L3
Exemplo n.º 2
0
def main():
t1 = 5 > 9
if t1 : goto .L1
goto .L2

label .L1
C3D.pila = 0
C3D.eje_if = "Verdadero"
C3D.ejecutar() #Crear Base de datos
#print("si jala")

goto .L3

label .L2
C3D.pila = 0
C3D.eje_if = "Else"
C3D.ejecutar() #Crear Base de datos

label .L3
main()