zustmyy开发

Hello World!

Modern building architecture
zustmyy开发的服务器
zust-myy
const stuName = "zust-myy";
const school = "ZUST";
const age = 20;

const alive: Function =
(name: string, school: string, age: number): string =>
{
  return `My name is ${name}, I am ${age} years old, I am studying in ${school}`;
};
console.log(alive(stuName, school, age));