$FUNCNAME$
  LOAD()
$CATEGORY$
	CODEBLOCK, SYSTEM
$SUMMARY$
	Load byte-code file or dynamic library.
$LANG_RU$
	 -   .
$SYNTAX$
     LOAD(<sFileName>) 	--> <CodeBlock>
$ARGUMENTS$
     <sFileName>	String, is the byte-code file name od dymanic library file name.
$LANG_RU$
     <sFileName>	String,  -      .
$RETURNS$
     Returns code block, what was loaded from file.
$LANG_RU$
       ,   .
$DESCRIPTION$
     LOAD() reades file <sFileName> and returns code block.
     <sFile> is the byte-code file "filename.po" or dynamic library "filename.so".
     After loading all not static functions are accessible to use.
$LANG_RU$
     LOAD()   <sFileName>    .
     <sFile>  -  "filename.po"    "filename.so".
        ,   ,   
     .
$EXAMPLES$

/* test.po */
local a
	a := "Hello, world!"
return a
/////////////////////////

block := LOAD("test.po")

qout( eval(block) )	// --> Hello, world!

$PLATFORMS$
$SEEALSO$
$AUTHOR$
ITK
   $LANG_RU$

$END$


