Files
Mastering-Node.js-Web-Devel…/Chapter 03/primer/index.ts
T
2024-05-29 18:54:49 +01:00

8 lines
209 B
TypeScript

import { Name, WeatherLocation } from "./modules";
let name = new Name("Adam", "Freeman");
let loc = new WeatherLocation("raining", "London");
console.log(name.nameMessage);
console.log(loc.weatherMessage);