' --------------------------------------------------
' Print text with shadow | Imprimir texto con sombra
' --------------------------------------------------
variable string text = "Hello World!" ' Text to print | Texto a imprimir
screen 600, 400 ' Setup screen | Inicializar pantalla
font 64, bold, transparent ' Setup font | Inicializar fuente
cursor to 2, 2 ' Print shadow | Imprimir sombra
pen "black"
print text
cursor to 0, 0 ' Print text | Imprimir texto
pen "blue"
print text