Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
anpigon
/
langchain-qa-bot
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
5e4d301
langchain-qa-bot
/
docs
/
langchain
/
libs
/
community
/
tests
/
examples
/
hello_world.js
anpigon
add langchain docs
ed4d993
11 months ago
raw
Copy download link
history
blame
Safe
157 Bytes
class
HelloWorld
{
sayHello
(
) {
console
.
log
(
"Hello World!"
);
}
}
function
main
(
) {
const
hello =
new
HelloWorld
();
hello.
sayHello
();
}
main
();