library(R6)
pre <- R6Class("pre",
public = list(
dbl = NULL,
initialize = function(){},
functionA = function(){},
functionB = function() {}
) )
Here is the code I want:
FunctionA ()
{
FunctionB ()
}
But there is an error here.
Error: could not find function "functionB"
Please let me know how to fix it.