diff --git a/docs/examples.js b/docs/examples.js
index 414114c..d745e3c 100644
--- a/docs/examples.js
+++ b/docs/examples.js
@@ -15,8 +15,7 @@ let exampleCode = {
alert: 'script: alert("Hello, World!")',
javascript: `html: div id="app"; app.innerHTML = "Hello, World!"`,
draw_sine: `// sine wave\nfor i in 0..1000\n ctx.lineTo(i, 100 + Math.sin(i / 10) * 50)\nctx.stroke()`,
- sine: `
- double sin(double x){
+ sine: `double sin(double x){
double
S1 = -1.66666666666666324348e-01,
S2 = 8.33333333332248946124e-03,
diff --git a/docs/index.html b/docs/index.html
index af50a5c..ab17e2c 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -35,6 +35,7 @@
overflow: auto;
min-height: 100px; /* Minimum height for the editor */
min-width: 200px; /* Minimum width for the editor */
+ border: 1px solid #ddd;
}
@@ -67,10 +68,13 @@
-
+
+
+
-
A new programming language for wasm
+
A new programming language for Wasm