All Downloads are FREE. Search and download functionalities are using the official Maven repository.

examples.TypeScriptExample.txt Maven / Gradle / Ivy

class Greeter {
    constructor(public greeting: string) { }
    greet() {
        return "

" + this.greeting + "

"; } }; // This is a comment var greeter = new Greeter("Hello, world!"); document.body.innerHTML = greeter.greet();




© 2015 - 2024 Weber Informatics LLC | Privacy Policy