blob: 7b0b33c9f1b77901e36b27d254c3ee10ee9fb7c1 (
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(final String[] args) {
- Window.main(args);
- }
- }
|