Skip to main content

Hola Mundo

 

 

2024-09-14 13_48_48-Configuración.png

# Imports go at the top
from microbit import *


# Code in a 'while True:' loop repeats forever
while True:
    display.show(Image.SMILE)
    sleep(1000)
    display.scroll('Hola mundo')