picolisp

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

commit 1e492ec80dbf33e8e84c6b11ddb8f0b91cd93ca1
parent 9ea3bd928b8517f7aae21f36e099148ddc08fe93
Author: Alexander Burger <abu@software-lab.de>
Date:   Wed, 27 Apr 2011 11:17:12 +0200

Changed local 'p' to 'pil' in some docs
Diffstat:
Mdoc/ref.html | 12++++++------
Mdoc/refA.html | 2+-
Mdoc/refO.html | 2+-
Mdoc/refV.html | 2+-
4 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/doc/ref.html b/doc/ref.html @@ -537,13 +537,13 @@ files, which are in turn loaded by "ext.l". Thus, a typical call would be: $ bin/picolisp lib.l ext.l </code></pre> -<p>The recommended way, however, is to call the "p" shell script, which includes -"lib.l" and "ext.l". Given that your current project is loaded by some file -"myProject.l" and your startup function is <code>main</code>, your invocation -would look like: +<p>The recommended way, however, is to call the "pil" shell script, which +includes "lib.l" and "ext.l". Given that your current project is loaded by some +file "myProject.l" and your startup function is <code>main</code>, your +invocation would look like: <pre><code> -$ ./p myProject.l -main +$ ./pil myProject.l -main </code></pre> <p>For interactive development it is recommended to enable debugging mode, to @@ -551,7 +551,7 @@ get the vi-style command line editor, single-stepping, tracing and other debugging utilities. <pre><code> -$ ./p myProject.l -main + +$ ./pil myProject.l -main + </code></pre> <p>This is equivalent to diff --git a/doc/refA.html b/doc/refA.html @@ -395,7 +395,7 @@ href="refC.html#cmd">cmd</a></code>, <a href="ref.html#invoc">Invocation</a> and <code><a href="refO.html#opt">opt</a></code>. <pre><code> -$ ./p -"println 'OK" - abc 123 +$ ./pil -"println 'OK" - abc 123 OK : (argv) -> ("abc" "123") diff --git a/doc/refO.html b/doc/refO.html @@ -212,7 +212,7 @@ href="ref.html#invoc">Invocation</a> and <code><a href="refA.html#argv">argv</a></code>. <pre><code> -$ ./p -"de f () (println 'opt (opt))" -f abc -bye +$ ./pil -"de f () (println 'opt (opt))" -f abc -bye opt "abc" </code></pre> diff --git a/doc/refV.html b/doc/refV.html @@ -92,7 +92,7 @@ additional "JVM" or "C", respectively, separated by a space. When <code>flg</code> is non-NIL, printing is suppressed. <pre><code> -$ ./p -version +$ ./pil -version 3.0.1.22 : (version T) -> (3 0 1 22)