UNPKG
hello-ai
Version:
latest (0.0.2)
0.0.2
0.0.1
这个是个帮助自己链接到广阔AI世界的项目,也希望能帮助到你。
hello-ai.anzz.top
xxxily/hello-ai
hello-ai
/
src
/
main.js
12 lines
(11 loc)
•
241 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
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