function greet(name) {
	return `Hello, ${name}!`;
}

greet("world");