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

22 lines
457 B
TypeScript
Raw Normal View History

2023-02-13 00:43:14 +08:00
/*
* @Author: Kane
* @Date: 2023-02-09 22:14:30
* @LastEditors: Kane
2023-02-21 23:56:17 +08:00
* @LastEditTime: 2023-02-21 23:32:00
2023-02-13 00:43:14 +08:00
* @FilePath: //src/main.ts
* @Description:
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
*/
2023-02-09 18:36:43 +08:00
2023-02-14 23:36:40 +08:00
import dataTypes from "./DataType/DataType";
2023-02-13 16:52:44 +08:00
import { pakoTest } from "./gzip/PakoTest";
2023-02-09 18:36:43 +08:00
2023-02-13 00:43:14 +08:00
const greetings = "hello, this is kane's typescript!";
2023-02-09 18:36:43 +08:00
2023-02-13 00:43:14 +08:00
console.log(greetings);
console.log("all");
2023-02-09 18:36:43 +08:00
2023-02-13 16:52:44 +08:00
//dataTypes();
pakoTest();