File: script.as

package info (click to toggle)
angelscript 2.38.0%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,736 kB
  • sloc: cpp: 77,114; asm: 2,017; makefile: 666; xml: 253; javascript: 42; ansic: 26; python: 22; sh: 7
file content (9 lines) | stat: -rw-r--r-- 150 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
// Let's include another script file
#include "scriptinclude.as"

void main()
{
    print("I'm now in main()\n");

    includedFunction();
}