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

show an info message if a C compiler is not installed

This commit is contained in:
Alexander Medvednikov
2019-11-28 16:49:35 +03:00
parent e31d892598
commit 9e19472c33
6 changed files with 87 additions and 41 deletions

View File

@@ -1,11 +1,14 @@
fn test_fn() {
println('test fn')
}
fn main() {
println('x64 test')
for _ in 0..5 {
println('Hello world from V x64 machine code generator!')
}
println('Hello again!')
test_fn()
println('dne')
}
fn test_fn() {
println('test fn')
}