picolisp

Unnamed repository; edit this file to name it for gitweb.
git clone https://logand.com/git/picolisp.git/
Log | Files | Refs | README | LICENSE

mkVers (233B)


      1 #!../bin/picolisp ../lib.l
      2 # 07mar11abu
      3 # (c) Software Lab. Alexander Burger
      4 
      5 (load "../src64/version.l")
      6 
      7 (out "vers.h"
      8    (prinl
      9       "static byte Version[4] = {"
     10       (glue "," *Version)
     11       "};" ) )
     12 
     13 (bye)
     14 
     15 # vi:et:ts=3:sw=3