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