refactor: spread across files

This commit is contained in:
2026-07-21 11:53:10 +02:00
parent a324252e8c
commit fb40d83244
5 changed files with 173 additions and 142 deletions
+18
View File
@@ -0,0 +1,18 @@
(
println (
let (
(x 2)
)
(
cond
(
(= x 2)
5
)
(
else
1
)
)
)
)