10 lines
86 B
R
10 lines
86 B
R
foo <- function()
|
|
{
|
|
bar <- function()
|
|
{
|
|
sys.calls()
|
|
}
|
|
bar()
|
|
}
|
|
|
|
foo()
|