; Const Example ; ------------- ; Const declares a value that can never change - perfect for game rules Const MAX_LIVES=3 Const ALIEN_SCORE=100 Const GRAVITY#=9.8 Print "You start with "+MAX_LIVES+" lives." Print "Every alien you shoot is worth "+ALIEN_SCORE+" points." Print "Gravity pulls your ship down at "+GRAVITY+" units per second." ; Constants can be used anywhere a value can Print "Shooting 5 aliens scores "+(5*ALIEN_SCORE)+" points." Print "" Print "Press any key to close the example" WaitKey End