winch_call | R Documentation |
Primarily intended for testing.
winch_call(fun, env = parent.frame())
fun |
A function callable without arguments. |
env |
The environment in which to evaluate the function call. |
The return value of fun()
.
winch_stop()
foo <- function() {
winch_call(bar)
}
bar <- function() {
writeLines("Hi!")
}
foo()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.