mirror of
https://gitlab.com/fbb-git/cppannotations
synced 2024-11-16 07:48:44 +01:00
10 lines
112 B
Text
10 lines
112 B
Text
list backtick(string arg)
|
|
{
|
|
list ret;
|
|
|
|
echo(OFF);
|
|
ret = `arg`;
|
|
echo(g_echo);
|
|
return ret;
|
|
}
|
|
|