Declare the return type after the parameter list:
function add(a: number, b: number): number {
return a + b;
}
function greet(name: string): string {
return `Hello, ${name}`;
}
function log(message: string): void {
console.log(message); // void = no return
}