lpc4/lib/
lpc4/lib/doc/efun/
lpc4/lib/doc/lfun/
lpc4/lib/doc/operators/
lpc4/lib/doc/simul_efuns/
lpc4/lib/doc/types/
lpc4/lib/etc/
lpc4/lib/include/
lpc4/lib/include/arpa/
lpc4/lib/obj/d/
lpc4/lib/save/
lpc4/lib/secure/
lpc4/lib/std/
lpc4/lib/std/living/
NAME
	make_object - compile a program

SYNTAX
	string make_object(string prog);

DESCRIPTION
	This function compiles the string given to it as if it had been a
	file, and then return the name of the 'faked' file so that you
	can clone objects from it.

EXAMPLE
	string a,b;
	object c;
	a="void create() { write("foo\n"); }\n";
	b=make_object(a);
	c=clone_object(b);
	update(b);

SEE ALSO
	update, find_object, load