Multiplication Table - Blitzmax Typing CST Test
Loading…
Multiplication Table — Blitzmax Code
Prints multiplication table of a number.
Local n:Int = 5
For Local i:Int = 1 To 10
Print n + " x " + i + " = " + n*i
NextBlitzmax Language Guide
BlitzMax is a high-level, procedural programming language designed for game development and multimedia applications. It provides a simple syntax, cross-platform capabilities, and built-in support for graphics, sound, and input handling.
Primary Use Cases
- ▸2D and 3D game development
- ▸Multimedia applications
- ▸Rapid prototyping for interactive software
- ▸Cross-platform hobbyist games
- ▸Educational programming for game design
Notable Features
- ▸Simple BASIC-like syntax
- ▸Cross-platform compilation (Windows, macOS, Linux)
- ▸Built-in graphics and sound libraries
- ▸Support for OpenGL for 3D graphics
- ▸Extensible with external libraries and modules
Origin & Creator
Created by Mark Sibly in 2001.
Industrial Note
BlitzMax is mainly used for indie game development, hobbyist projects, and small cross-platform multimedia applications, especially in the early 2000s indie scene.