#5319
Yutaka Emura
Keymaster

fgdfg3434 wrote:
oo! tnx
—————————-
#language = “JavaScript”
#include “2.jsee”
Window.document.write( ‘Hello!’ );
—————————-
this is work, but i needed the following
———————————
// comment at top of the file
#language = “JavaScript”
#include “2.jsee”
Window.document.write( ‘Hello!’ );
———————————

Again, you cannot put // comment at top of the file.
# lines must be at top!

Also


Window.document.write( 'Hello!' );

should be


document.write( 'Hello!' );

Correct code:


#language = "JavaScript"
#include "2.jsee"
// comment at top of the file
document.write( 'Hello!' );