tcl: Phase 3 OCaml primitives — file-read/write/append/exists?/glob + clock-seconds/milliseconds/format in sx_primitives.ml + unix dep; tcl-cmd-clock/file wired up; 337/337 green
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 50s

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-06 18:10:22 +00:00
parent f0f339709e
commit d21cde336a
4 changed files with 153 additions and 12 deletions

View File

@@ -95,15 +95,15 @@
(get (run "proc g {} { yield }\ncoroutine cg g\ncg") :result)
"")
; --- clock seconds stub ---
; --- clock seconds ---
(ok "clock-seconds"
(get (run "clock seconds") :result)
"0")
(> (parse-int (get (run "clock seconds") :result)) 0)
true)
; --- clock milliseconds stub ---
; --- clock milliseconds ---
(ok "clock-milliseconds"
(get (run "clock milliseconds") :result)
"0")
(> (parse-int (get (run "clock milliseconds") :result)) 0)
true)
; --- clock format stub ---
(ok "clock-format"