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

@VMODULE relative paths in #flag lines

This commit is contained in:
Delyan Angelov
2020-02-06 18:38:35 +02:00
committed by GitHub
parent 67a13fc916
commit 2ce6b190dd
8 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,8 @@
module main
import mod1
fn main(){
res := mod1.vadd(1,2)
println( res )
}