mirror of
https://github.com/odin-lang/Odin.git
synced 2026-02-17 16:38:22 +00:00
17 lines
302 B
Odin
17 lines
302 B
Odin
#+build !freestanding
|
|
#+build !js
|
|
package regex_common
|
|
|
|
/*
|
|
(c) Copyright 2024 Feoramund <rune@swevencraft.org>.
|
|
Made available under Odin's license.
|
|
|
|
List of contributors:
|
|
Feoramund: Initial implementation.
|
|
*/
|
|
|
|
@require import "core:os"
|
|
|
|
when ODIN_DEBUG_REGEX {
|
|
debug_stream := os.stderr.stream
|
|
} |