Skip to content

Instantly share code, notes, and snippets.

@jungaretti
Last active March 28, 2022 16:23
Show Gist options
  • Save jungaretti/26b7cb6545cb1cb56d9dc8ac273ee4fc to your computer and use it in GitHub Desktop.
Save jungaretti/26b7cb6545cb1cb56d9dc8ac273ee4fc to your computer and use it in GitHub Desktop.
Hackathon Demo
import { Person } from './Person';
const favPerson = new Person("Kartik");
export class Person {
name: string;
constructor(name: string) {
this.name = name;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment