Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ssougnez/c1c976edae7d85081a52c91ef2c85934 to your computer and use it in GitHub Desktop.
Save ssougnez/c1c976edae7d85081a52c91ef2c85934 to your computer and use it in GitHub Desktop.
function log(message) {
console.log(message);
}
export function add(x, y) {
log(`Adding ${x} to ${y}`);
return x + y;
}
export function subtract(x, y) {
log(`Subtracting ${y} from ${x}`);
return x - y;
}
export var e = 2.71;
export var pi = 3.14;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment