dust/std/fs.ds

6 lines
70 B
Plaintext
Raw Normal View History

2024-05-25 15:48:43 +00:00
fs = {
2024-06-17 19:47:07 +00:00
read_file = fn (path: str) -> str {
2024-06-22 15:44:09 +00:00
__READ_FILE__ path
2024-05-25 15:48:43 +00:00
}
}