aboutsummaryrefslogtreecommitdiff
path: root/gn/util/convert.scm
blob: ff943e0398a501237716de77e60d5a9136baca0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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))