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

fix compilation

This commit is contained in:
Alexander Medvednikov 2019-06-30 20:48:26 +02:00
parent 61b51f6149
commit 9062338cb4
2 changed files with 3 additions and 4 deletions

View File

@ -823,6 +823,7 @@ fn new_v(args []string) *V {
files << f
}
}
obfuscate := args.contains('-obf')
return &V {
os: _os
out_name: out_name

View File

@ -1,8 +1,6 @@
import net
fn test_dial() {
conn := net.dial('irc.freenode.org', 6667)
println(conn.sockfd)
//conn := net.dial('irc.freenode.org', 6667)
//println(conn.sockfd)
}