Favicon

version querying


Hi,

does bigloo have a primitive for querying its own version?

Marijn

--
Marijn Schouten (hkBst), Gentoo Lisp project, Gentoo ML
<http://www.gentoo.org/proj/en/lisp/>, #gentoo-{lisp,ml} on FreeNode
Sven.Hartrumpf | 30 Jun 08:44
Favicon

Re: version querying

Sat, 28 Jun 2008 19:28:31 +0200, hkBst wrote:

> Does bigloo have a primitive for querying its own version?

Yes, use *bigloo-version*

For portable code, use cond-expand like in these examples:

1:=> (cond-expand (bigloo3 (write 'matches)))
matches
1:=> (cond-expand (bigloo3.1 (write 'matches)))
matches
1:=> (cond-expand (bigloo3.1a (write 'matches)))
matches

Ciao
Sven

Gmane