Guide 2: Advanced Topics

This is the second guide.

Example Code

const greet = (name: string): void => {
    console.log(`Hello, ${name}!`);
};

greet("Guide 2");