show/hide this revision's text 2 added 21 characters in body

LISP (Common Lisp/Scheme):

(lambda (y) (* y 2))

JavaScript:

x = function(y) { return 2*y; };

Python:

lambda x: 2*x

PHP (>= 5.3):

$x = function(y) { return 2 * y; };
show/hide this revision's text 1

LISP:

(lambda (y) (* y 2))

JavaScript:

x = function(y) { return 2*y; };

Python:

lambda x: 2*x

PHP (>= 5.3):

$x = function(y) { return 2 * y; };