An integer is a whole number that can be positive, negative, or zero.
How to parse an integer from a string in Zig?What is the proper way to parse an integer from a string in Zig, while being able to specify the resulting integer type?
```zig
const foo = "96";
```
How would I convert `foo` to an `i32`, for example?