function foo(name) { return "Hello " + name; } foo("Klipse");
[1,2,3].map(function(x){ return x + 1;})
def add(a,b): return a+b print(add(2,3))