科大前程

Hello World!

Modern building architecture
前程QCQCQC的服务器
QC-Server
const stuName = "QCQCQC";
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));