blob: da6524aeffd093ae0ff77096bbbb57b9ea35d23e (
plain)
- // SPDX-FileCopyrightText: <Alexander Marthin Klemensen stud-marthin@ruc.dk>
- // SPDX-FileCopyrightText: <Ian Valentin Christensen stud-ianc@ruc.dk>
- // SPDX-FileCopyrightText: <Zahed Noos zahed@ruc.dk>
- // SPDX-License-Identifier: GPL-3.0-or-later
- package com.example.portfolio2;
- /// Bachelorizer - bachelor programme registrar
- public final class Main {
- /// Default constructor
- // (declared explicitly only to silence javadoc)
- public Main() {}
- /// JVM entry point
- ///
- /// @param args command-line arguments
- public static void main(String[] args) {
- Window.main(args);
- }
- }
|