Prefix type and let to replace immutable

This commit is contained in:
Ginger Bill
2017-06-12 12:56:47 +01:00
parent 33eeb58521
commit 0c05fc1432
22 changed files with 244 additions and 184 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
// Multiple precision decimal numbers
// NOTE: This is only for floating point printing and nothing else
const Decimal = struct {
type Decimal struct {
digits: [384]u8, // big-endian digits
count: int,
decimal_point: int,