Rename lldb-vscode to lldb-dap. This change is largely mechanical. The following substitutions cover the majority of the changes in this commit: s/VSCODE/DAP/ s/VSCode/DAP/ s/vscode/dap/ s/g_vsc/g_dap/ Discourse RFC: https://discourse.llvm.org/t/rfc-rename-lldb-vscode-to-lldb-dap/74075/
14 lines
259 B
C
14 lines
259 B
C
#include <stdio.h>
|
|
#include <unistd.h>
|
|
|
|
int recurse(int x) {
|
|
if (x <= 1)
|
|
return 1; // recurse end
|
|
return recurse(x - 1) + x; // recurse call
|
|
}
|
|
|
|
int main(int argc, char const *argv[]) {
|
|
recurse(20); // recurse invocation
|
|
return 0;
|
|
}
|