This is the first post. I needed something to fill this space.
Here I am testing the code snippet functionality with a very simple Python ‘Hello World’ program:
print('Hello world!')
#=> prints 'Hello world!'.
Or a little more complicated:
def helloWorld():
print('Hello world!')
for x in range(1):
helloWorld()
#=> prints 'Hello world!'.
Nice.