26 lines
652 B
HTML
26 lines
652 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Welcome!{% endblock %}
|
|
|
|
{% block head %}
|
|
{% endblock %}
|
|
|
|
{% 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>
|
|
<a href="https://hy.readthedocs.org/en/latest/" title="Hy Documentation">Read the docs</a> to learn more.
|
|
</p>
|
|
<p>
|
|
Want to try it out? Flip on JavaScript and try out the <a href="/repl" >REPL</a>
|
|
</p>
|
|
{% endblock %}
|