Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add sbcl col for cmd-line-program #5

Open
wants to merge 1 commit into
base: gh-pages
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 15 additions & 14 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@
</div>
</div><!-- #header -->
</div><!-- #header-wrapper -->

<div class="wrapper feature">
<h1>
LFE Hyperpolyglot
</h1>
<p class="intro">A syntactical comparison of <br/>
LFE, Erlang, Common Lisp, &amp; Clojure</p>
</div>

<div class="full-width-divider">
<ul class="wrapper highlights">

Expand All @@ -52,7 +52,7 @@ <h1>
<li><a href="#dates-time">dates and time</a></li>
<li><a href="#lists">lists</a></li>
<li><a href="#fixed-length-arrays">fixed-length arrays</a></li>
</ul>
</ul>
</div>
<div id="toc-main">
<ul>
Expand All @@ -79,12 +79,12 @@ <h1>
</div>
</div>
</div>

</ul>
</div>

<div class="full-width-divider page">

<table class="wiki-content-table">
<tbody>
<tr>
Expand Down Expand Up @@ -210,9 +210,10 @@ <h1>
'io:format("~p", [1 + 2 + 3])' \<br/>
-noshell -run init stop<br>
</td>
<td><br>
</td>
<td><br>
<td style="vertical-align: top;">
$ sbcl --eval \<br/>
'(format t "~s" (list (+ 1 2 3)))' \<br/>
--eval '(sb-ext:quit)'
</td>
</tr>
<tr>
Expand Down Expand Up @@ -271,12 +272,12 @@ <h1>
Ð, Ñ, Ò, Ó, Ô, Õ, Ö, ×, Ø, Ù, Ú, Û, Ü,
Ý, Þ, ß, à, á, â, ã, ä, å, æ, ç, è, é, ê, ë,
ì, í, î, ï, ð, ñ, ò, ó, ô, õ, ö, ÷, ø,
ù, ú, û, ü, ý, þ, ÿ <br /><br />
ù, ú, û, ü, ý, þ, ÿ <br /><br />
<span style="color: gray;"><em>This has special meaning and is reserved:</em></span><br>
:
</td>
<td style="vertical-align: top;"><br>

</td>
<td><span style="color: gray;"><em>case insensitive, cannot start
with digit</em></span><br>
Expand Down Expand Up @@ -961,7 +962,7 @@ <h1>
<td style="vertical-align: top;">
(string:equal "foo" "bar")<br/>
<span style="color: gray;">Also the comparison operators work, e.g:</span>
(== "foo" "bar")<br/>
(== "foo" "bar")<br/>
(< "foo" "bar")<br/>
(=< "foo" "bar")<br/>
</td>
Expand Down Expand Up @@ -1023,7 +1024,7 @@ <h1>
<td><a href="#string-trim">trim</a></td>
<td style="vertical-align: top;">
(string:strip " foo " 'both #\ )<br />

</td>
<td style="vertical-align: top;"><br>
</td>
Expand Down Expand Up @@ -2608,7 +2609,7 @@ <h1>
</td>
<td style="vertical-align: top;">
<span style="color: gray;"><em>Only used in guards</em></span><br>

</td>
<td>(when (&lt; x y)<br>
<span style=""> </span>(print "x is less ")<br>
Expand Down