This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/share/CodeBlocks/lexers/lexer_angelscript.sample

16 lines
245 B
Plaintext

/* The main startup script */
int main()
{
Log("Running startup script");
// you could set the shortcuts used for the menus
// e.g.:
// SetAcceleratorFor("File|Open", "Ctrl-Alt-O");
int i = 5;
wxString s = "Hello world";
return 0;
}