Five v0.9 — Harbour + Go fusion language
- Compiler: PP → Lexer → Parser → Analyzer → Gengo pipeline - Parser: 232/236 (98%) Harbour compatibility, registry-based dispatch - RTL: 351 Harbour-compatible functions - RDD: DBF/NTX/CDX engines with Rushmore bitmap optimization - Go Interop: IMPORT + pkg.Func() + obj:Method() with FastPath (15M calls/sec) - HB_FUNC API: Full Harbour C API compatible Go bridge - Concurrency: SPAWN/LAUNCH/GOROUTINE, <-, WATCH, PARALLEL FOR, ASYNC/AWAIT - Extensions: Multi-return, DEFER, Slice, f-string, Nil-safe ?:, CONST - Macro Compiler: Runtime AST parsing and evaluation - Debugger: TUI debugger with source display, breakpoints, stepping - FRB: Native + Pcode dual mode runtime binary - Tests: 13 packages ALL PASS Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
21
examples/test_debug.prg
Normal file
21
examples/test_debug.prg
Normal file
@@ -0,0 +1,21 @@
|
||||
// Debug test program
|
||||
// Run: five debug examples/test_debug.prg
|
||||
|
||||
FUNCTION Main()
|
||||
LOCAL cName := "Charles"
|
||||
LOCAL nAge := 30
|
||||
LOCAL nResult
|
||||
|
||||
? "Starting..."
|
||||
nResult := Calculate(10, 20)
|
||||
? "Result:", nResult
|
||||
? "Name:", cName
|
||||
? "Age:", nAge
|
||||
? "Done."
|
||||
RETURN NIL
|
||||
|
||||
FUNCTION Calculate(a, b)
|
||||
LOCAL nSum
|
||||
nSum := a + b
|
||||
nSum := nSum * 2
|
||||
RETURN nSum
|
||||
Reference in New Issue
Block a user