mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
Added levenshtein.c3 to working files. Fixes to reverse indexing. Added min/max functions. Tentatively removed "opaque"
This commit is contained in:
@@ -6,7 +6,7 @@ macro max(a, b)
|
||||
}
|
||||
|
||||
// Horribly bad implementation of BigInt with add/sub.
|
||||
public struct BigInt @opaque
|
||||
public struct BigInt
|
||||
{
|
||||
byte* number;
|
||||
uint length;
|
||||
|
||||
@@ -6,7 +6,7 @@ macro @max(a, b)
|
||||
}
|
||||
|
||||
// Horribly bad implementation of BigInt with add/sub.
|
||||
public struct BigInt @opaque
|
||||
public struct BigInt
|
||||
{
|
||||
byte& number;
|
||||
uint length;
|
||||
|
||||
Reference in New Issue
Block a user