mirror of
https://github.com/apple/swift.git
synced 2026-06-20 15:42:51 +02:00
53585a5e70
For instance, converting from "100000" to "100_000", and "1000.0001" to "1_000.000_1".
8 lines
82 B
Plaintext
8 lines
82 B
Plaintext
func foo() {
|
|
_ = 1234567
|
|
_ = 1234567.12345
|
|
_ = +1_234_567
|
|
_ = -1234567
|
|
}
|
|
|