-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path404.html
67 lines (55 loc) · 1.98 KB
/
404.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Zig+ZLS Playground</title>
<link rel="stylesheet" href="style/style.scss">
<script src="src/enable_coop_coep.js"></script>
</head>
<body>
<nav>
<h1>Zig Playground</h1>
<div>
<strong>Note:</strong> The self-hosted WebAssembly backend is still experimental: compiler bugs/crashes are not unexpected.
</div>
</nav>
<div id="popup">
<h2>Grab the share link below:</h2>
<input id="popup__input" type="text" readonly>
<div>
<button id="popup__copy" class="primary">Copy</button>
<button id="popup__close">Close</button>
</div>
</div>
<main>
<div id="split-pane">
<div id="editor"></div>
<div id="outputs">
<div id="outputs__toolbar">
<div>
<button id="outputs__run" class="primary">Run</button>
<button id="outputs__share">Share</button>
</div>
<div>
<select id="outputs__tab">
<option value="zls-stderr">ZLS Debug</option>
<option value="zig-stderr" selected>Zig Debug</option>
<option value="zig-output">Zig Output</option>
</select>
</div>
</div>
<div id="outputs__tabs">
<div id="zls-stderr">
</div>
<div id="zig-stderr" class="shown">
</div>
<pre id="zig-output"></pre>
</div>
</div>
</div>
</main>
<script src="/src/editor.ts" type="module"></script>
</body>
</html>