summaryrefslogtreecommitdiff
path: root/docs/index.md
diff options
context:
space:
mode:
authornodist <kevin.comas.git@gmail.com>2026-06-06 15:42:50 -0400
committernodist <kevin.comas.git@gmail.com>2026-06-06 15:42:50 -0400
commit7df3d08d8dd0d81f24f0788b44efd37883d3c1c8 (patch)
tree8a30d983fe92451f2b7048e06ee8f1121e314a6a /docs/index.md
parent1d5f5dd3cd5cc07352379fe33930770e3d203f3a (diff)
start io and remove print op
Diffstat (limited to 'docs/index.md')
-rw-r--r--docs/index.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/index.md b/docs/index.md
index b0b2baa..d298e04 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -31,8 +31,8 @@ readFile("filename", callback(data))
// langauge equivalent
// Do Soemthing
Fn[name; callback] $ (
- ( read ) : `use "io"
- callback `sync read `sync name
+ ( read; open ) : `use "io"
+ callback `sync read `sync open `sync name
) `async ("filename"; callback)
// Continue while readFile is running
```