Skip to content

Instantly share code, notes, and snippets.

@steffex
Last active December 19, 2015 03:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save steffex/5888427 to your computer and use it in GitHub Desktop.
Save steffex/5888427 to your computer and use it in GitHub Desktop.
def addOne(x):
return x+1
# prints 5
print addOne(4)
# also prints 5
print addOne(addOne(3))
<?php
funtion addOne($x)
{
return $x+1;
}
// prints 5
print addOne(4);
// also prints 5
print addOne(addOne(3));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment