- Always add the implicit `+` for the exponent part, i.e. `1.0e+1` instead of `1.0e1`.
Discussed in issue #13.
Discussed in issue [#13](https://github.com/fredrikekre/Runic.jl/issues/13).
- Allow multiple trailing zeros in the fractional part, i.e. don't change `1.00` to `1.0`.
Such trailing zeros are sometimes used to align numbers in literal array expressions.
Discussed in issue #14.
Discussed in issue [#14](https://github.com/fredrikekre/Runic.jl/issues/14).
### Literal hex and oct numbers
@ -512,6 +514,11 @@ The keyword `in` is used consistently instead of `∈` and `=` in `for` loops. E
@@ -512,6 +514,11 @@ The keyword `in` is used consistently instead of `∈` and `=` in `for` loops. E
+for i in 1:2
```
#### Potential changes
- Since `∉` exists the formatted code may become asymmetric, when both `∈` and `∉` are
used, since `∉` is left alone and not replaced by e.g. `!(...)`. See discussion in issue