Hola, estoy aprendiendo a programar con Small Basic y me gustaría saber cómo puedo poner este código en una web. Gracias de ante mano.
GraphicsWindow.DrawBoundText(0, 0, 600, "Hola, bienvenido al juego de preguntas y respuestas. Escribe tus respuestas en minúsculas. Presiona INTRO cuando quieras confirmar respuesta. Si contestas mal una pregunta empezarás de nuevo. ")
start:
TextWindow.writeline ("¿De qué color es el mar? ")
Color = TextWindow.Read() 'leer
If Color = "azul" Then
TextWindow.WriteLine("Correcto")
Else
TextWindow.WriteLine("Incorrecto")
Goto start
Endif
TextWindow.writeline ("¿De qué color es el césped? ")
Color = TextWindow.Read() 'leer
If Color = "verde" Then
TextWindow.WriteLine("Correcto, sigue así.")
Else
TextWindow.WriteLine("Incorrecto")
Goto start
Endif
TextWindow.writeline ("¿De qué color son las manzanas? ")
Color = TextWindow.Read() 'leer
If Color = "rojo" Then
TextWindow.WriteLine("Correcto, genial.")
Else
TextWindow.WriteLine("Incorrecto")
Goto start
Endif
TextWindow.writeline ("¿Cúal es la inicial de sebi? ")
inicial = TextWindow.Read() 'leer
If inicial = "s" Then
TextWindow.WriteLine("Correcto, increíble.")
Else
TextWindow.WriteLine("Incorrecto")
Goto start
Endif
TextWindow.writeline ("¿De qué color son los plátanos? ")
Color = TextWindow.Read() 'leer
If Color = "amarillo" Then
TextWindow.WriteLine("Correcto, eres un crack.")
Else
TextWindow.WriteLine("Incorrecto")
Goto start
Endif