I have the following piece of code in my task.json:
{
"taskName": "Run",
"suppressTaskName": true,
"args": [
"${workspaceRoot}/bin/Albedo"
]
}
When I run "Run" the program starts as it is supposed to, but when I have getchar()
in the code nothing happens when I the program it get stuck in the output. There is no place where I can press Enter
to continue.
So I am thinking about how do I open the integrated terminal and run it from there? Would it be possible to call such a command from task.json
?