2023-02-12 16:43:14 +00:00
|
|
|
/*
|
|
|
|
* @Author: Kane
|
|
|
|
* @Date: 2023-02-09 22:14:30
|
|
|
|
* @LastEditors: Kane
|
|
|
|
* @LastEditTime: 2023-02-12 23:52:33
|
|
|
|
* @FilePath: /后端辅助工具/src/main.ts
|
|
|
|
* @Description:
|
|
|
|
*
|
|
|
|
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
|
|
|
*/
|
2023-02-09 10:36:43 +00:00
|
|
|
|
2023-02-12 16:43:14 +00:00
|
|
|
import { dataTypes } from "./DataType/DataType";
|
2023-02-09 10:36:43 +00:00
|
|
|
|
2023-02-12 16:43:14 +00:00
|
|
|
const greetings = "hello, this is kane's typescript!";
|
2023-02-09 10:36:43 +00:00
|
|
|
|
2023-02-12 16:43:14 +00:00
|
|
|
console.log(greetings);
|
|
|
|
console.log("all");
|
2023-02-09 10:36:43 +00:00
|
|
|
|
2023-02-12 16:43:14 +00:00
|
|
|
dataTypes();
|