aboutsummaryrefslogtreecommitdiff
(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))