mirror of
https://github.com/vlang/v.git
synced 2025-08-04 02:07:28 -04:00
12 lines
145 B
V
12 lines
145 B
V
module picoev
|
|
|
|
@[if picoev_verbose_errors ?]
|
|
fn elog(msg string) {
|
|
eprintln(msg)
|
|
}
|
|
|
|
@[if trace_fd ?]
|
|
fn trace_fd(msg string) {
|
|
eprintln(msg)
|
|
}
|