it-console/code/ts/后端辅助工具/src/main.ts

22 lines
457 B
TypeScript
Raw Normal View History

2023-02-12 16:43:14 +00:00
/*
* @Author: Kane
* @Date: 2023-02-09 22:14:30
* @LastEditors: Kane
2023-02-21 15:56:17 +00:00
* @LastEditTime: 2023-02-21 23:32:00
2023-02-12 16:43:14 +00:00
* @FilePath: //src/main.ts
* @Description:
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
*/
2023-02-09 10:36:43 +00:00
2023-02-14 15:36:40 +00:00
import dataTypes from "./DataType/DataType";
2023-02-13 08:52:44 +00:00
import { pakoTest } from "./gzip/PakoTest";
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-13 08:52:44 +00:00
//dataTypes();
pakoTest();