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
| Name | Type |
|---|---|
| image | integer |
| size | float |
Every form returns
nothing
Example · generated
PrintImage(1, 1.0)DO Sync()LOOPPrintImage 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.