By downloading this code you agree to the
Source Code Use License (PDF). |
{ version = 1.15; (* of makmod.p 2018 Nov 22}
(* begin module describe.makmod *)
(*
name
makmod: create a set of empty modules from a list of names
synopsis
makmod(fin: in, fout: out, output: out)
files
fin: a set of names separated by blanks or end-of-lines.
fout: a file of modules with the names listed in fin.
output: messages to the user.
description
makmod creates a set of empty modules that have
the names given in the fin file. one may then use
the module program to extract modules by the same names
from a module library (for example).
examples
if the fin file contains:
first second
3.rd
the fout file will contain: *)
(* begin module first *)
(* end module first *)
(* begin module second *)
(* end module second *)
(* begin module 3.rd *)
(* end module 3.rd *) (*
see also
moddef, module.p, show.p
author
john hoffhines
bugs
none known
*)
(* end module describe.makmod *)
{This manual page was created by makman 1.45}
{created by htmlink 1.62}