Citation:
SciTE can perform commands to compile or run source files with the output from these commands directed into the output pane.
For example, if Python is installed on the machine, open a new document, type:
print "Hi"
as that document's text.
Save the document as printhi.py.
The document should now appear coloured as SciTE is using the file's extension to decide upon the syntax styling to use:
print "hi"
Perform the Tools | Go command.
The output window will be made visible if it is not already visible and will show:
>python -u printhi.py
hi
>Exit code: 0
The first blue line is from
Voici l'erreur que j'obtiens :