mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
8 lines
148 B
V
8 lines
148 B
V
|
module os
|
||
|
|
||
|
// debugger_present returns a bool indicating if the process is being debugged
|
||
|
[inline]
|
||
|
pub fn debugger_present() bool {
|
||
|
return false
|
||
|
}
|