x       t      y       z
123     int    124     123.5
123.45  float  124.45  123.95
0123    string (error) (error)
07      string (error) (error)
08      string (error) (error)
0       int    1       0.5
0.      float  1       0.5
0.0     float  1       0.5
0.01    float  1.01    0.51
0b0100  int    5       4.5
0x1000  int    4097    4096.5
-123    int    -122    -122.5
-123.45 float  -122.45 -122.95
-0123   string (error) (error)
-0b0100 int    -3      -3.5
-0x1000 int    -4095   -4095.5
-07     string (error) (error)
-08     string (error) (error)
-0      int    1       0.5
-0.     float  1       0.5
-0.0    float  1       0.5
-0.01   float  0.99    0.49
