Пример #1
0
// (term-clreol) -> Nil
any plisp_term_clreol(any x) {
  term_clreol();
  return Nil;
}
Пример #2
0
// Lua: clreol()
static int luaterm_clreol( lua_State* L )
{
  term_clreol();
  return 0;
}
Пример #3
0
// picoc: term_clreol();
static void pterm_clreol(pstate *p, val *r, val **param, int n)
{
  term_clreol();
}