What it does
ExtractZip takes zipfilename (a string) and path (a string), and returns nothing. That is the first of 2 forms.
Syntax
1
ExtractZip(zipfilename string, path string)2
ExtractZip(zipfilename string, path string, password string)Parameters
| Name | Type | In forms |
|---|---|---|
| zipfilename | string | all |
| path | string | all |
| password | string | 2 |
Every form returns
nothing
Example · generated
Form 1, the short one
ExtractZip("assets/data.dat", "assets/data.dat")DO Sync()LOOPForm 2, with every argument
ExtractZip("assets/data.dat", "assets/data.dat", "value")DO Sync()LOOPExtractZip 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.