26 lines
289 B
Text
26 lines
289 B
Text
|
|
import extensions;
|
||
|
|
|
||
|
|
public singleton program
|
||
|
|
{
|
||
|
|
inner()
|
||
|
|
{
|
||
|
|
console.printLine(new CallStack())
|
||
|
|
}
|
||
|
|
|
||
|
|
middle()
|
||
|
|
{
|
||
|
|
self.inner()
|
||
|
|
}
|
||
|
|
|
||
|
|
outer()
|
||
|
|
{
|
||
|
|
self.middle()
|
||
|
|
}
|
||
|
|
|
||
|
|
// program entry point
|
||
|
|
function()
|
||
|
|
{
|
||
|
|
program.outer()
|
||
|
|
}
|
||
|
|
}
|