Closed eplbot[bot] closed 2 months ago
I'm not sure of the utility of passing arguments to a code, since you can just define the argument that you want to pass in the code
int main(int argc, char* argv[])
{
return argc //argc = 1;
}
can be switched to
int main()
{
int argc = 1;
return argc //argc = 1;
}
so this feature wont be fixed, also it complicates thing alot just to know what datatype would be passed as argument
An parameter could be added to the command to give arguments to the program