File: hello_world.js

package info (click to toggle)
closure-compiler 20130227%2Bdfsg1-10
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 12,776 kB
  • ctags: 45,946
  • sloc: java: 175,338; xml: 371; makefile: 19; sh: 6
file content (5 lines) | stat: -rw-r--r-- 101 bytes parent folder | download | duplicates (6)
1
2
3
4
5
// A simple function.
function hello(longName) {
  alert('Hello, ' + longName);
}
hello('New User');