Introduction
The language only has one built-in command. The command to save a blob value to a file.
Command: save:blob( blob_value, filename )
The save:blob command takes a binary data value and saves it to the file system using the given filename. If the command fails in any way, an error message will be output to the current output stream.
Example |
---|
let b = @load:blob( "glich32.png" ); call save:blob( b, "new_glich32.png" ); |