anpigon's picture
add langchain docs
ed4d993
raw
history blame
157 Bytes
class HelloWorld {
sayHello() {
console.log("Hello World!");
}
}
function main() {
const hello = new HelloWorld();
hello.sayHello();
}
main();