RosettaCodeData/Task/Stack-traces/Elena/stack-traces.elena

26 lines
289 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
import extensions;
2026-02-01 16:33:20 -08:00
public singleton Program
2023-07-01 11:58:00 -04:00
{
inner()
{
2026-02-01 16:33:20 -08:00
Console.printLine(new CallStack())
2023-07-01 11:58:00 -04:00
}
middle()
{
self.inner()
}
outer()
{
self.middle()
}
// program entry point
function()
{
2026-02-01 16:33:20 -08:00
Program.outer()
2023-07-01 11:58:00 -04:00
}
}