crafting-interpreters/lox/read_file.lox

7 lines
106 B
Text
Raw Normal View History

2025-05-26 13:58:45 +02:00
var filepath = "Cargo.toml";
var c = read(filepath);
while (c != nil) {
out(c);
c = read(filepath);
}