Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
CharlieBoyer
/
whdemo
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
67e3349
whdemo
/
src
/
index.ts
Charlie
update files
7bb3a2b
7 months ago
raw
Copy download link
history
blame
Safe
112 Bytes
function
greet
(
name:
string
):
string
{
return
`Hello,
${name}
!`
;
}
document
.
body
.
innerHTML
=
greet
(
"World"
);