/*
This project is licensed under the MIT License.
See the LICENSE file in the project root for details.

Copyright (c) 2024-2026 Florian Reuth <git@florianreuth.de>
*/

public final class LoopExample {

    public static void main(String[] args) {
        for (final int i = 1; i <= 5; i++) {
            System.out.println("Nummer: " + i);
        }
    }

}