feat(site): update demo page to have no semicolon server:setup script

This commit is contained in:
Ayo Ayco 2024-12-27 11:53:37 +01:00
parent d50b67f3f4
commit 43fa3dfb12
2 changed files with 4 additions and 4 deletions

View file

@ -1,5 +1,5 @@
# someday let's think about formatting html # someday let's think about formatting html
**/*.html # **/*.html
**/*.md **/*.md
**/*.css **/*.css

View file

@ -9,10 +9,10 @@
let greeting = { let greeting = {
url: 'https://www.google.com', url: 'https://www.google.com',
message: "hello" message: "hello"
}; }
greeting.message = "nope"; greeting.message = "nope"
var count = sum(1, 247); var count = sum(1, 247)
function sum(x, y) { function sum(x, y) {
return x + y; return x + y;