From b1db013cc01c94e27edf982be9b027a2b0bb9712 Mon Sep 17 00:00:00 2001 From: Pjotr Prins Date: Sat, 18 Nov 2023 12:33:22 +0100 Subject: Get first BXD dataset for precompute --- gn/util/convert.scm | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 gn/util/convert.scm (limited to 'gn/util/convert.scm') diff --git a/gn/util/convert.scm b/gn/util/convert.scm new file mode 100644 index 0000000..ff943e0 --- /dev/null +++ b/gn/util/convert.scm @@ -0,0 +1,14 @@ +(define-module (gn util convert) + #:use-module (json) + #:use-module (ice-9 match) + #:use-module (ice-9 format) + #:use-module (ice-9 iconv) + #:use-module (ice-9 receive) + #:use-module (ice-9 string-fun) + + #:export ( + int-to-string + )) + +(define (int-to-string i) + (format #f "~d" i)) -- cgit v1.2.3