Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
slow_tests
/
inout
/
os.vv
13
lines
·
12
sloc
·
225 bytes
·
37b739849dadc244d3e5ade98b1ccf0bf8a929d6
Raw
1
import os
2
3
fn main() {
4
vexe := os.getenv('VEXE')
5
vroot_doc := os.dir(vexe) + '/doc'
6
mut files := os.ls(vroot_doc) or { panic(err) }
7
files.sort()
8
for file in files {
9
if file.ends_with('.md') {
10
println(file)
11
}
12
}
13
}
14