Liste des Groupes | Revenir à cl forth |
>Section 3.4.5 of the standard document is very clear on this.
In lxf I have module, private, public, end-module
your example would be
>
module
private
>
variable cnt
0e fvalue k
: [x] ... ; immediate
>
public
>
: foo ( F: r.coefficient -- r.result )
to k 0 cnt !
...
;
>
end-module
>
end-module will remove all headers from the private words in the module
I am not fond of mixing definitions inside others.
>
Les messages affichés proviennent d'usenet.