劲竹2023

Hello World!

Modern building architecture
前程QCQCQC的服务器 (上班版)
QC-Server
const stuName = "QCQCQC";
const company = "ZJU-ICI";
const age = 22;

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