// BEWARE: this script is for development only // it does a stack overflow on your machine to check the // approx. recursion limit for the used Kalkulon binary by writing files // with name "rec_i.kalkulon" do_stack_overflow()=do_stack_overflow(0), do_stack_overflow(n)= ( WriteData("rec_"+(string)n +".kalkulon", {"Ok!"}), do_stack_overflow(++n) );