summaryrefslogtreecommitdiff
path: root/Makefile
AgeCommit message (Collapse)Author
2026-02-19Implement function named arguments, ret, and multiple return valuesPaul Buetow
- Add FuncDef struct to symbol.h/symbol.c: holds body token list, strdup'd param names, and param count; replaces the bare List* that SYM_FUNCTION used to store; funcdef_delete frees param strings and body list (tokens are GC-managed) - Add CONTROL_RET to ControlType so ret can propagate cleanly through the interpreter's control-flow stack - Update _func_decl to parse optional (p1, p2, ...) param list and store a FuncDef* instead of a raw List* - Implement case TT_RET in _control: clears intermediate stack values, evaluates comma-separated return expressions, sets CONTROL_RET - Propagate CONTROL_RET in all loop bodies (while/until, loop, do) without clearing it; while/until rescues return values from the temporary condition stack before it is destroyed - Update _term call site to support parenthesised func(arg1, arg2) syntax alongside the existing no-parens style for backward compat - Modify interpret_subprocess to merge the sub's stack into the parent when CONTROL_RET is active so return values survive teardown - Update function_process_self_defined SYM_FUNCTION case to pop and bind named args, run the body, then clear CONTROL_RET - Add -D_POSIX_C_SOURCE=200809L to Makefile CFLAGS for strdup under -std=c99 -pedantic - Add examples/func_args_ret.fy covering zero-arg, single-arg, two-arg, conditional ret, multiple return values, and old-style no-parens backward compat Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-02-19migrate build system from BSD make (pmake) to GNU makePaul Buetow
- Replace BSD make != shell assignment with $(shell ...) idiom - Replace static $(OBJS): rule + sed hack with %.o: %.c pattern rule - Use $(MAKE) for all recursive make invocations - Update CLAUDE.md to document GNU make instead of pmake - Build verified clean on Fedora (GCC 15, all 14 examples pass) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2014-06-22add README.podPaul C. Buetow (mars.fritz.box)
2008-12-15say foo[1] worksPaul Buetow
2008-11-07(no commit message)Paul Buetow
2008-11-05(no commit message)Paul Buetow
2008-11-04few more make fules. Paul Buetow
2008-10-18examples work now againPaul Buetow
2008-10-18backdowngradePaul Buetow
2008-09-16array progressPaul Buetow
2008-09-06comments and documentings.Paul Buetow
2008-08-25bugs fixed, initial arrayPaul Buetow
2008-08-24some modsPaul Buetow
2008-08-24few modsPaul Buetow
2008-05-15Moved stuff into trunk.Paul Buetow