Skip to content

Commit 6cec91f

Browse files
committed
regenerate site
1 parent 7a2a839 commit 6cec91f

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

articles/tutorials/getting_started_cli/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ <h2>Getting Started with the Clojure CLI</h2>
110110
Hello, Command!
111111
</code></pre><p>or:</p><pre><code>$ clojure -M -e '(clojure-version)'
112112
"1.11.3"
113-
</code></pre><p>The <code>-e</code> option prints the value returned by the expression (if it is not <code>nil</code>).</p><h3 id="working-in-the-repl">Working in the REPL</h3><p>In your project directory, start up a repl (<code>clj</code>) and
113+
</code></pre><p>The <code>-e</code> option prints the value returned by the expression (if it is not <code>nil</code>).</p><blockquote><p>Note: you can find more detailed information about <a href="https://clojure-doc.org/articles/ecosystem/libraries_authoring/#creating-new-projects">Creating New Projects</a> later in this guide.</p></blockquote><h3 id="working-in-the-repl">Working in the REPL</h3><p>In your project directory, start up a repl (<code>clj</code>) and
114114
run your <code>-main</code> function to see its output in the repl:</p><pre><code>$ clj
115115
Clojure 1.11.3
116116
user=&gt; (require 'my.proj)

articles/tutorials/introduction/index.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,9 @@ <h2>Introduction to Clojure</h2>
9292
The Practical.li website also has an excellent
9393
<a href="https://practical.li/clojure/">Learn Clojure</a> book and there's also the
9494
classic <a href="https://www.braveclojure.com/">Clojure for the Brave and True</a>
95-
(although that is showing its age a bit at this point).</p><h2 id="the-basics">The Basics</h2><p>Clojure is a general-purpose programming language, and a quite
95+
(although that is showing its age a bit at this point).</p><p>When you're ready to move beyond experimenting in the REPL, you can read about
96+
<a href="https://clojure-doc.org/articles/ecosystem/libraries_authoring/#creating-new-projects">Creating New Projects</a>
97+
later in this guide.</p><h2 id="the-basics">The Basics</h2><p>Clojure is a general-purpose programming language, and a quite
9698
practical one at that.</p><p>The syntax for Clojure is like Lisp and is very simple: code is made
9799
up of expressions which are evaluated to some value. Here are some
98100
examples of expressions:</p><pre><code class="clojure">5 ; ⇒ 5

cryogen.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><atom:link href="https://clojure-doc.org/" rel="self" type="application/rss+xml"/><title>Clojure Guides</title><link>https://clojure-doc.org/</link><description>Clojure Documentation</description><lastBuildDate>Sat, 06 Jul 2024 11:03:04 -0700</lastBuildDate><generator>clj-rss</generator></channel></rss>
1+
<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><atom:link href="https://clojure-doc.org/" rel="self" type="application/rss+xml"/><title>Clojure Guides</title><link>https://clojure-doc.org/</link><description>Clojure Documentation</description><lastBuildDate>Sat, 06 Jul 2024 11:11:19 -0700</lastBuildDate><generator>clj-rss</generator></channel></rss>

feed.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><atom:link href="https://clojure-doc.org/" rel="self" type="application/rss+xml"/><title>Clojure Guides</title><link>https://clojure-doc.org/</link><description>Clojure Documentation</description><lastBuildDate>Sat, 06 Jul 2024 11:03:04 -0700</lastBuildDate><generator>clj-rss</generator></channel></rss>
1+
<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><atom:link href="https://clojure-doc.org/" rel="self" type="application/rss+xml"/><title>Clojure Guides</title><link>https://clojure-doc.org/</link><description>Clojure Documentation</description><lastBuildDate>Sat, 06 Jul 2024 11:11:19 -0700</lastBuildDate><generator>clj-rss</generator></channel></rss>

0 commit comments

Comments
 (0)