mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
14 lines
135 B
Go
14 lines
135 B
Go
module sync
|
|
|
|
struct Mutex {
|
|
}
|
|
|
|
fn (m Mutex) lock() {
|
|
panic('not implemented')
|
|
}
|
|
|
|
fn (m Mutex) unlock() {
|
|
panic('not implemented')
|
|
}
|
|
|