magic constant

List<int> const magic

File magic: \0AVM. The leading NUL marks the file as binary so no tool mistakes it for text, in the spirit of WebAssembly's \0asm.

Implementation

static const List<int> magic = [0x00, 0x41, 0x56, 0x4D];