Test casting.

This commit is contained in:
Captain ALM 2022-11-30 15:54:33 +00:00
parent 1e74c7bf30
commit b2664b009c
Signed by: alfred
GPG Key ID: 4E4ADD02609997B1

View File

@ -1,2 +1,7 @@
#Printing hello world #Cast testing
print("Hello world!") x = str(3)
y = int(3)
z = float(3)
print(type(x), " : ", x)
print(type(y), " : ", y)
print(type(z), " : ", z)