hy/site/templates/index.html

23 lines
537 B
HTML
Raw Normal View History

2013-03-10 04:54:29 +01:00
{% extends "base.html" %}
{% block title %}Welcome!{% endblock %}
{% 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 %}