feat: block2poly working

fix: for loops boundries
This commit is contained in:
0xalivecow 2024-10-18 22:44:46 +02:00
parent 64fe182fc3
commit ba3975e7fd
No known key found for this signature in database
3 changed files with 66 additions and 5 deletions

16
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,16 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug",
"program": "${workspaceFolder}/<executable file>",
"args": [],
"cwd": "${workspaceFolder}"
}
]
}