mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-14 01:42:22 -07:00
10 lines
264 B
Odin
10 lines
264 B
Odin
/*
|
|
package regex_compiler implements a bytecode compiler for the virtual machine
|
|
included alongside it.
|
|
|
|
Operands larger than u8 are written in system endian order.
|
|
|
|
More details can be found in the documentation for the virtual machine.
|
|
*/
|
|
package regex_compiler
|