This commit is contained in:
cmerkens 2024-10-07 12:00:45 +02:00
parent 95752bfcc2
commit 1c14a7a05a
3 changed files with 17 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
/out/
/.idea/
/Semester3/.vs/

9
Semester3/DotNET/lol.cs Normal file
View File

@ -0,0 +1,9 @@
using System;
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello, World!");
}
}

View File

@ -0,0 +1,7 @@
package Semester3.Java;
public class SmartBank {
public static void main(String[] args) {
System.out.println("Welcome to smart bank");
}
}