mirror of
https://github.com/vlang/v.git
synced 2025-08-03 17:57:59 -04:00
10 lines
161 B
V
10 lines
161 B
V
// vtest build: present_node?
|
|
import os
|
|
|
|
fn test_read_from_file() {
|
|
mut buf := []u8{len: 10}
|
|
f := os.open(@FILE)!
|
|
n := f.read(mut &buf)!
|
|
println(buf[..n])
|
|
}
|