RosettaCodeData/Task/Stack-traces/FutureBasic/stack-traces.basic

15 lines
254 B
Text
Raw Permalink Normal View History

2025-08-11 18:05:26 -07:00
output file @"Rosetta Code Stack Traces"
include "NSLog.incl"
void local fn StackTrace
CFArrayRef stackSymbols = fn ThreadCallStackSymbols
for CFStringRef symbol in stackSymbols
NSLog( @"%@", symbol )
next
end fn
fn StackTrace
HandleEvents