started task 7

This commit is contained in:
2025-12-28 03:18:13 +01:00
parent 01bd4ba693
commit ec4234ee13
66 changed files with 2431 additions and 121 deletions

29
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,29 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build-task2",
"type": "shell",
"options": {
"cwd": "${workspaceFolder}/week3_TinsaeGhilay/Task 2"
},
"command": "mkdir -p out && javac -cp \"lib/*\" -d out $(find src -name \"*.java\")",
"group": "build",
"problemMatcher": [
"$javac"
]
},
{
"label": "build-task5",
"type": "shell",
"options": {
"cwd": "${workspaceFolder}/week3_TinsaeGhilay/Task 5"
},
"command": "mkdir -p out && javac -d out $(find src -name \"*.java\")",
"group": "build",
"problemMatcher": [
"$javac"
]
}
]
}