Jump to content

User:Podnf/sandbox

From Wikipedia, the free encyclopedia

Welcome to this sandbox. Read the notice above for more information about sandboxes.

Testing area

[edit]

Tests of various features will be put here.

This is a test of an external link.

This is a test of an internal link.

This is a test of the code tag.


The following is a test of syntax highlighting:

def myfunc(x):
    print(x*3)

myfunc("Hello, World!")
myfunc(7)

This function takes x as input and prints x*3. In Python 3, the first execution of the function would print Hello, World!Hello, World!Hello, World!, whereas the second execution of the function would print 21.