I have the script:
print("Hello World") print("1+1")
for some strange reason it doesnt do math and add 1 and 1 together
"hi" is a string so itll come out as plain text
If you where to do:
print(1+1)
It would print 2 because it isnt a string, its an integer.