From c31b4295b8506a1a68cbf98be036ddb7b120e049 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Mon, 25 Jan 2021 21:18:43 -0500 Subject: [PATCH] Clean up output --- examples/ffi/sub-bignums.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/ffi/sub-bignums.scm b/examples/ffi/sub-bignums.scm index 1a15d2b7..87092c61 100644 --- a/examples/ffi/sub-bignums.scm +++ b/examples/ffi/sub-bignums.scm @@ -9,9 +9,9 @@ (c-define sub-big-nums bignum "sub_big_nums" opaque bignum bignum) -(write +(display (sub-big-nums (current-thread-data) 999999999999999999999999 - 222222222222222222222222 - )) + 222222222222222222222222)) +(newline)