9 lines
160 B
TypeScript
9 lines
160 B
TypeScript
|
import { fetchData } from "./link";
|
||
|
|
||
|
function main() {
|
||
|
console.log("Hello, this is the main function!");
|
||
|
fetchData("AI写作工具")
|
||
|
}
|
||
|
|
||
|
main();
|
||
|
|