24 lines
281 B
HTML
24 lines
281 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block title %}
|
||
|
Reverse
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<p>
|
||
|
Take in a string. Print the reverse.
|
||
|
</p>
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block example_input %}
|
||
|
<p>
|
||
|
Test me
|
||
|
</p>
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block example_output %}
|
||
|
<p>
|
||
|
em tseT
|
||
|
</p>
|
||
|
{% endblock %}
|