Nothing
i =
function(n)
{
invisible(diag(n))
}
typeInfo(i) = ReturnTypeSpecification("matrix")
h =
function(n)
{
return(invisible(diag(n)))
}
g =
function()
{
invisible(return(x+y))
}
#
gg =
function()
{
invisible(return(x))
}
# Works.
ggg =
function()
{
invisible(x)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.