1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

examples: fix news_fetcher on Windows

This commit is contained in:
Alexander Medvednikov
2019-07-24 02:35:25 +02:00
parent fcb1f211e3
commit 7f29928aec
4 changed files with 18 additions and 12 deletions

View File

@ -7,11 +7,11 @@ module sync
struct Mutex {
}
fn (m Mutex) lock() {
panic('not implemented')
pub fn (m Mutex) lock() {
//panic('not implemented')
}
fn (m Mutex) unlock() {
panic('not implemented')
pub fn (m Mutex) unlock() {
//panic('not implemented')
}