RosettaCodeData/Task/Stack-traces/R/stack-traces-1.r

11 lines
86 B
R

foo <- function()
{
bar <- function()
{
sys.calls()
}
bar()
}
foo()