-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (43 loc) · 1.85 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="nuna">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>웹누나</title>
</head>
<body>
<div class="container">
<h3 class="title">
웹누나: 자바스크립트로 된 <a href="https://github.com/nunalang/nuna">누나 언어</a> 처리기
</h3>
<p>
이 처리기는 <a href="http://puzzlet.org/doc/aheui/jsaheui_ko.html">자바스크립트로 된 아희 처리기</a>를 본따 만들었습니다.<br />
DOM의 특성상 출력이 느려 다른 처리기 보다 느릴 수 있습니다. 이 웹누나는 누나 v0.3를 기준으로 합니다
</p>
<table>
<tbody>
<tr>
<td valign="top">
<textarea name="code" rows="20" cols="80" placeholder="누나 코드를 여기 입력하세요"></textarea>
<br>
<input name="run" type="button" value="실행">
<input name="stop" type="button" value="멈춤">
<!-- <input name="step" type="button" value="한 단계만"> -->
<input name="clear" type="button" value="메시지 지움">
<input name="reset" type="button" value="코드 초기화">
<br>
<textarea name="output" rows="10" cols="80" placeholder="출력은 여기 표시됩니다"></textarea>
<br>
<input name="speed" type="range" max="1000" min="0.001" step="0.001" value="100">
<label name="splabel">실행 속도: -</label>
</td>
<td valign="top">
<textarea name="dumps" rows="33" cols="30" placeholder="디버그 값들이 표시됩니다"></textarea>
</td>
</tr>
</tbody>
</table>
</div>
<script src="src/main.js"></script>
</body>
</html>