From 4d4d50a9053d81013c1d1c58f5fd2f54f259b35d Mon Sep 17 00:00:00 2001 From: John Alanbrook Date: Tue, 17 Feb 2026 03:10:45 -0600 Subject: [PATCH] fix claude.md --- CLAUDE.md | 1 - 1 file changed, 1 deletion(-) diff --git a/CLAUDE.md b/CLAUDE.md index c984f4ad..630903a5 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -22,7 +22,6 @@ All code uses 2 spaces for indentation. K&R style for C and Javascript. - No classes — only objects and prototypes (`meme()`, `proto()`, `isa()`) - No `switch`/`case` — use record dispatch (a record keyed by case, values are functions or results) instead of if/else chains - No `for...in`, `for...of`, spread (`...`), rest params, or default params -- No named function declarations — use `var fn = function() {}` or arrow functions - Functions have a maximum of 4 parameters — use a record for more - Variables must be declared at function body level only (not in if/while/for/blocks) - All variables must be initialized at declaration (`var x` alone is an error; use `var x = null`)