#4751
xxx_pic
Member

7.0 beta 10

there are 2 ways to be fixed:
hello_world (leave the whole word)
or split to :
hello
world

the 1st way is recommanded,because many program langauges use _ as a validate identifier.
Python for example(from Emeditor’s template.py):
def HelloWorld():
print “Hello World!”

if __name__==”__main__”:
HelloWorld()