initial commit

This commit is contained in:
slederer 2024-09-19 14:12:22 +02:00
commit 60db522e87
107 changed files with 36924 additions and 0 deletions

17
pcomp/.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,17 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "pcomp",
"type": "shell",
"command": "fpc -Mobjfpc -gl pcomp.pas",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}