PrintImage

Family: Image · One form

What it does

PrintImage makes something happen at once: it prints. It takes image (an integer) and size (a float), and returns nothing.

Syntax

PrintImage(image integer, size float)

Parameters

NameType
imageinteger
sizefloat

Every form returns

nothing

Example · generated

PrintImage(1, 1.0)DO  Sync()LOOP

PrintImage is called with values of the types its signature asks for. The DO … LOOP is not decoration: a classic BASIC program ends the moment it runs out of lines, and Sync() is what draws the frame.

35 commands in Image