/ 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 . "betlang-playground") 11 (tier . "satellite") 12 (license . "AGPL-3.0-or-later") 13 (language . "rust")) 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 . 20) 26 (feature-flags . 0) 27 (parser . 0) 28 (interpreter . 0))) 29 (working-features 30 ("README documentation" 31 "Language design concepts")))) 32 33 (milestones 34 (v0.1.0 35 (status . "planned") 36 (features 37 "Feature flag system" 38 "Basic parser" 39 "REPL"))))