/ STATE.scm
STATE.scm
1 ;; SPDX-License-Identifier: AGPL-3.0-or-later 2 ;; STATE.scm - Current project state 3 4 (state 5 (version . "1.0.0") 6 (phase . "framework") 7 (updated . "2025-12-30T18:00:00Z") 8 9 (project 10 (name . "affinescript-playground") 11 (tier . "satellite") 12 (license . "AGPL-3.0-or-later") 13 (language . "ocaml")) 14 15 (compliance 16 (rsr . #t) 17 (security-hardened . #t) 18 (ci-cd . #f) 19 (guix-primary . #f) 20 (nix-fallback . #f)) 21 22 (current-position 23 ((overall-completion . 10) 24 (components 25 ((specification . 30) 26 (parser . 0) 27 (type-checker . 0) 28 (codegen . 0) 29 (wasm-target . 0))) 30 (working-features 31 ("README documentation" 32 "Language design concepts")))) 33 34 (milestones 35 (v0.1.0 36 (status . "planned") 37 (features 38 "Basic parser" 39 "Affine type checking" 40 "Simple WASM output"))))