2013-03-10 04:54:29 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block title %}Welcome!{% endblock %}
|
|
|
|
|
2013-03-12 00:14:20 +01:00
|
|
|
{% block head %}
|
|
|
|
{% endblock %}
|
|
|
|
|
2013-03-12 03:02:30 +01:00
|
|
|
{% block content %}
|
|
|
|
<h1>Hi, Welcome to Hy!</h1>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
Hy is a special Lisp langage. It compiles into a Python AST, and allows for
|
|
|
|
some pretty awesome stuff (like writing Flask or Django apps in Lisp).
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
It's got an extremely simple Macro system, which will hopefully become
|
|
|
|
a bit more advanced as the language develops.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Want to try it out? Flip on JavaScript and try out the <a href="/repl" >REPL</a>
|
|
|
|
</p>
|
2013-03-10 04:54:29 +01:00
|
|
|
{% endblock %}
|