mirror of
https://github.com/odin-lang/Odin.git
synced 2026-01-03 11:42:28 +00: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
|