hare

The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit 4e765b74f1a425bd65903efffe6275a71a1aa098
parent 5c2da3a96c4ebaf8d8e15213b8969ae07f653854
Author: Drew DeVault <sir@cmpwn.com>
Date:   Fri, 19 Feb 2021 14:12:22 -0500

sort: style

Diffstat:
Msort/+test.ha | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sort/+test.ha b/sort/+test.ha @@ -1,6 +1,6 @@ fn ncmp(a: const *void, b: const *void) int = { - let _a = a: const *int, _b = b: const *int; - return *_a - *_b; + let a = a: const *int, b = b: const *int; + return *a - *b; }; @test fn search() void = {