Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 308 Bytes

README.md

File metadata and controls

17 lines (13 loc) · 308 Bytes

v-streader

CI

Port of Go's strings.Reader

import takkyuuplayer.streader
import os
import io

fn main() {
	mut reader := streader.new('hello world')
	mut out := os.stdout()
	io.cp(reader, mut out) ? // Output: hello world
}