eigenmath/clear.cpp

20 lines
200 B
C++
Raw Permalink Normal View History

#include "stdafx.h"
#include "defs.h"
void
eval_clear(void)
{
2004-08-28 00:09:03 +02:00
clear_term();
clear_symbols();
defn();
2006-01-16 20:37:31 +01:00
push(symbol(NIL));
}
2004-08-28 00:09:03 +02:00
// clear from application GUI code
void
clear(void)
{
2004-08-28 00:09:03 +02:00
run("clear");
}