Skip to content
Snippets Groups Projects
Commit f3b4881c authored by Hakim El Hattab's avatar Hakim El Hattab
Browse files

update code sample for syntax highlight in readme

parent 3f8d48d5
No related branches found
No related tags found
No related merge requests found
......@@ -258,17 +258,13 @@ By default, Reveal is configured with [highlight.js](http://softwaremaniacs.org/
```html
<section>
<p align="left">
<code>
<pre>
<pre><code>
(def lazy-fib
(concat
[0 1]
((fn rfib [a b]
(lazy-cons (+ a b) (rfib b (+ a b)))) 0 1)))
</pre>
</code>
</p>
</code></pre>
</section>
```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment