12 lines
297 B
Text
12 lines
297 B
Text
# First, we wanna test if it can even do the basics
|
|
an int = 123456
|
|
a float = 3.5
|
|
a long (8B) = 121212121212121212
|
|
a double = 0.0000128
|
|
|
|
# Now we want to see if it correctly blows up
|
|
an incorrect char = 256
|
|
unsigned = -34
|
|
signed, but large = 3000000000
|
|
mangled float = 3.f4
|
|
mangled float 2 = 2.4f
|