6 Apr 09:30
ANN: glint 0.1.2
From: KOGURO, Naoki <naoki <at> koguro.net>
Subject: ANN: glint 0.1.2
Newsgroups: gmane.lisp.scheme.gauche
Date: 2008-04-06 07:31:40 GMT
Subject: ANN: glint 0.1.2
Newsgroups: gmane.lisp.scheme.gauche
Date: 2008-04-06 07:31:40 GMT
Hi all. glint (codecheck module) 0.1.2 is released, and it is avaliable at http://homepage.mac.com/naoki.koguro/prog/codecheck/index.html glint is a code check tool for Gauche. This tool reports syntax errors, undefined symbols, and type mismatches of your code (but it is experimental and maybe it has too many bugs). For example, (let (a 1) (print (+ a 2))) (define (fact n) (if (= n 1) 1 (* n (fact (- m 1))))) (define (hash-(Continue reading)table-≥alist tbl) (hash-table-map cons tbl)) glint reports these errors for this buggy code. % glint wrong.scm wrong.scm:2: error: syntax-error: malformed let: (let (a 1) (print (+ a 2))) wrong.scm:8: error: m(user) referenced but not defined wrong.scm:11: error: wrong type for argument 1 of #<closure hash-table- map>: <hash-table> required, but got #<subr cons>
RSS Feed