print "Hello World!"
letter = 'A'
number = 100
decimal = 7.5
pi = 3.14159
isTrue = "false"
print "char letter: ",letter
print "int number: ",number
print "float decimal: ",decimal
print "double pi: ",pi
print "bool isTrue: ",isTrue
nums = [1.5,2.75,3.25]
name = ['m','i','k','e','\0']
coords = [(1,2,3),(4,5,6)]
print "nums[0]: ",nums[0]
print "nums[1]: ",nums[1]
print "nums[2]: ",nums[2]
print "name[0]: ",name[0]
print "Test stirng: ", "".join(name)
print "coords[0][2]: ",coords[0][2]
print "coords[1][2]: ",coords[1][2]
# ipython does not support vector array
PI = 3.1415926536
print "6\" circle circumference: " ,(PI * 6)
#ENUM IS NOT IN PYTHON SO DECLARED DIRECTLY
RED = 1
YELLOW = 2
GREEN = 3
BROWN = 4
BLUE = 5
PINK = 5
BLACK = 6
print "I shot a red worth: ",RED
print "Then a blue worth: ",BLUE
print "Total scored: ",(RED+BLUE)
#typedef and enum is not in python so declared directly
neutral = "NEGATIVE "
live = "POSITIVE"
print "Neutral wire: ", neutral
print "Live wire: ", live