document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #el nombramiento se realiza aparte del llamado
  2. powfun <- function(x, pow) {
  3.     x^pow
  4. }
  5. powfun(2, 10)
  6.  
  7. #funcion anĂ³nima
  8. (function(x, pow) {
  9.     x^pow
  10. })(2, 10)
');