UNPKG

hello-ai

Version:

这个是个帮助自己链接到广阔AI世界的项目,也希望能帮助到你。

12 lines (11 loc) 241 B
class HelloAi { constructor() { this.name = 'hello-ai'; this.version = '1.0.0'; this.website = 'https://hello-ai.anzz.top' } sayHello() { console.log(this.name, this.version, this.website); } } export default HelloAi