Name Tag
Introduction
Tell everyone who you are. Show you name on the LEDs.

Step 1
Place the ||basic:show string|| block in the ||basic:forever|| block to repeat it. Change the text to your name.
basic.forever(() => {
    basic.showString("Emma");
});Step 2
Look at the simulator and make sure it shows your name on the screen.

Place more ||basic:show string|| blocks to create your own story.
basic.forever(() => {
    basic.showString("Emma");
    basic.showString("<3<3<3");
})Step 4
If you have a Calliope mini connected, click |Download| to transfer your code and watch your name scroll!
basic.forever(function() {}) 
            