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);
		}
	}	
	

Next parts

Part 2

function(argument) values, and variables are discussed.

Part 3

while and repeat until loops, if and if/else statements, conditional expressions (don't know how to type in youtube description!), += statements, and the randomInt() function

Part 4

creating "blocks" (functions) to allow code to be reused, and how to use blocks to run things quickly