-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (29 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Sadoku</title>
<link data-trunk rel="css" href="style.css"/>
</head>
<body>
<div id="yewstartshere"></div>
<div id="overview">
<h1>Sudoku WebAssembly & Rust Demo</h1>
<p>
This demo application shows a Rust library powering a Sudoku game using <a href="https://yew.rs">Yew</a> and <a
href="https://webassembly.org/"/>WebAssembly</a>.
</p>
<p>
To play, select empty cells with your mouse and use the following keys:
<ul>
<li><kbd>1</kbd> - <kbd>9</kbd>: Enter a "Guess" into the field.</li>
<li><kbd>SHIFT</kbd> + <kbd>1</kbd> - <kbd>9</kbd>: Enter some "Pencilmarks" into the field.</li>
<li><kbd>BACKSPACE</kbd>: Clear the field.</li>
</ul>
<p><b>Note: Numpad keys may be used as well.</b></p>
</p>
<p>Errors will be highlighted, but no message will be displayed when you complete the puzzle! The puzzle is
currently hardcoded.</p>
</div>
</body>
</html>