mirror of
https://github.com/jamiebuilds/the-super-tiny-compiler.git
synced 2024-10-27 20:34:08 +00:00
9 lines
265 B
HTML
9 lines
265 B
HTML
<h1>Code in:</h1>
|
|
<!-- This <textarea> will hold the user-inputted code. -->
|
|
<textarea id="input" cols="100" rows="15">
|
|
</textarea>
|
|
|
|
<h1>Code out:</h1>
|
|
<!-- This will hold the generated code or an error message. -->
|
|
<pre id="output" style="overflow: scroll"></pre>
|