25 lines
556 B
HTML
25 lines
556 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Welcome!{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
{# {% autoescape off %}{% code "clojure" %}
|
|
(print "foo bar")
|
|
{% endcode %}{% endautoescape %} #}
|
|
|
|
<div class = 'repl' >
|
|
<textarea id = 'repl-input' class = 'repl-pane repl-left' >
|
|
(defn square [x]
|
|
(* x x))
|
|
|
|
(print (square 4))
|
|
</textarea>
|
|
<pre
|
|
id = 'repl-output'
|
|
class = 'repl-pane repl-right'
|
|
></pre>
|
|
</div>
|
|
|
|
{% endblock %}
|