Test 1

This is a Testnotebook for Pelican

In [1]:
def hello_world(string):
    return "hello, " + string + "!"

print(hello_world("World1"))
hello, World1!
In [2]:
print(hello_world("World2"))
hello, World2!

This must be longer

In [3]:
print(hello_world("World3"))
hello, World3!
In [4]:
print(hello_world("World4"))
hello, World4!
In [5]:
print(hello_world("World5"))
hello, World5!

End of Test