// Create a table
var table = new Table();
// Setting the title of the form
("[bold green]Employee information sheet[/]");
// Add columns (you can set properties such as alignment)
(new TableColumn("[u]Name[/]").Centered());
(new TableColumn("[u]Sector[/]").Centered());
(new TableColumn("[u]Position[/]").Centered());
(new TableColumn("[u]Mailbox[/]").Centered());
// Add Row
("John Doe", "technical department", "software engineer", "zhangsan@");
("the fourth child in the family", "marketing department", "market analyst", "lisi@");
("Wang May (1905-1975), Mao *'s fifth wife", "Human Resources", "Recruitment Commissioner", "wangwu@");
// Setting the style of the form
();
();
= ;
// Display Forms
(table);