Home

GlitterIDE

Beginners Tutorial 1

This is a first in a series of tutorials for the beginner coder to learn the basics of programming and Glitter IDE.

Concepts

Related Video

(Audio is a bit quiet as my microphone was the wrong way around)

Downloads

Commands Introduced

Control Structures Introduced

Event Structures Introduced

Related Code


	// Comments
	flag {
		penDown()
		repeat(36) {
			repeat(4) {
				turnRight(90)
				move(100)
			}	
			turnLeft(10);
		}
	}