Skip to content

Instantly share code, notes, and snippets.

@edipofederle
Created April 2, 2012 22:58
Show Gist options
  • Select an option

  • Save edipofederle/2287811 to your computer and use it in GitHub Desktop.

Select an option

Save edipofederle/2287811 to your computer and use it in GitHub Desktop.
(fn[x] (+ x 1)) ; Declaracao de um funcao anonima
; retorna algo como: #<user$eval963$fn__964 user$eval963$fn__964@cd70f7>
((fn[x] (+ x 1)) 10) ; Executando um função anonima, retorna 11.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment