Hello World
const greeting: string = "Hello World";
console.log(greeting);
greeting: str = "Hello World"
print(greeting)
Two languages. Same idea. Different approaches.
const greeting: string = "Hello World";
console.log(greeting);
greeting: str = "Hello World"
print(greeting)
Two languages. Same idea. Different approaches.