@ngdoc overview @name Developer Guide: Initializing Angular: Automatic Initialization @description Angular initializes automatically when you load the angular script into your page, specifying angular's `ng:autobind` attribute with no arguments:
Hello {{'world'}}!
As with `ng:autobind`, you can specify an element id that should be exclusively targeted for compilation as the value of the `#autobind`, for example: `#autobind=angularContent`. If angular.js file is being combined with other scripts into a single script file, then all of the config options above apply to this processed script as well. That means if the contents of `angular.js` were appended to `all-my-scripts.js`, then the app can be bootstrapped as:
  
  
   
    
   
   
     
Hello {{'world'}}!
## Global Angular Object The angular script creates a single global variable `angular` in the global namespace. All angular APIs are bound to fields of this global object. ## Related Topics * {@link dev_guide.bootstrap Initializing Angular} * {@link dev_guide.bootstrap.manual_bootstrap Manual Initialization} ## Related API {@link api/angular.module.NG.$compile Compiler API}