File: hello_world.js

package info (click to toggle)
closure-compiler 20130227%2Brhino-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 43,948 kB
  • sloc: java: 269,095; javascript: 266,347; perl: 3,469; sh: 1,388; xml: 1,140; makefile: 78
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');