This repository has been archived on 2022-02-28. You can view files and clone it, but cannot push or open issues or pull requests.
frontend-styles/src/js/greeting.js

7 lines
177 B
JavaScript

export default class Greeting {
static SOURCECODE = "Hello. The source code lives via git. Find the repository here:";
printToConsole(message) {
console.log(message);
}
}