program Profile;
type
TProfile = record
Description: string;
Languages: string;
Tools: string;
Servers: string;
end;
var
Profile: TProfile;
begin
Profile.Description := 'Low-level programming enthusiast.';
Profile.Languages := 'C, C++, Go, C#, PHP, Python, TypeScript, Lua, Perl ...';
Profile.Tools := 'Docker, Vite, Kubernetes, Git, Jenkins ...';
Profile.Systems := 'Linux, FreeBSD, Cisco, Windows';
end.











