summaryrefslogtreecommitdiff
path: root/Examples/javascript/simple/runme.js
blob: 4abff0e2af4d0eff78d332d68bdcf566e09fd9ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
var example = require("example");

/* Call our gcd() function */

x = 42;
y = 105;
g = example.gcd(x,y);
console.log("GCD of x and y is=" + g);

/* Manipulate the Foo global variable */

/* Output its current value */
console.log("Global variable Foo=" + example.Foo);

/* Change its value */
example.Foo = 3.1415926;

/* See if the change took effect */
console.log("Variable Foo changed to=" + example.Foo);