fix compilation

pull/1049/head
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 files << f
} }
} }
obfuscate := args.contains('-obf')
return &V { return &V {
os: _os os: _os
out_name: out_name out_name: out_name

View File

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