Add base64 tool

This commit is contained in:
2026-08-11 11:34:46 +08:00
parent 3976a8d7e7
commit 0292c0ebb2
10 changed files with 170 additions and 15 deletions
+20
View File
@@ -0,0 +1,20 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Build",
"type": "process",
"command": "/data/data/com.termux/files/usr/bin/g++",
"echoCommand": true,
"isBuildCommand": true,
"args": [
"-g",
"-o",
"${workspaceFolder}/out/hello-world",
"${workspaceFolder}/hello.cpp"
],
},
]
}