aboutsummaryrefslogtreecommitdiff
path: root/examples/expat-info.scm
blob: 3dc310f37fc34adf405cdfbb86c309a5a4c9f999 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
(use-modules (gamma expat))

(display (xml-expat-version-string))
(newline)

(let ((vinfo (xml-expat-version)))
  (format #t "Major:~A~%Minor:~A~%Micro:~A~%"
	  (list-ref vinfo 0)
	  (list-ref vinfo 1)
	  (list-ref vinfo 2)))

      

Return to:

Send suggestions and report system problems to the System administrator.