hare

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

commit bc7096ce501314baeee68f236284a5b215fc298d
parent 07930e788ddc4dc37e6b7b9d3f3d212610c92436
Author: Bor Grošelj Simić <bor.groseljsimic@telemach.net>
Date:   Sun, 28 Nov 2021 23:58:10 +0100

remove unused declarations

Signed-off-by: Bor Grošelj Simić <bor.groseljsimic@telemach.net>

Diffstat:
Mio/+test/copy.ha | 3---
1 file changed, 0 insertions(+), 3 deletions(-)

diff --git a/io/+test/copy.ha b/io/+test/copy.ha @@ -29,9 +29,6 @@ fn test_copier_copy(a: *stream, b: *stream) (size | error) = { fn test_copy_unsupported(a: *stream, b: *stream) (size | error) = errors::unsupported; -fn io::println(msg: str) void; -fn strconv::ztos(z: size) str; - @test fn copy() void = { let a = test_copier_open(), b = test_copier_open(); match (copy(&b, &a)) {