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/bc3d1100e381df592cf80153cf360b7a to your computer and use it in GitHub Desktop.
Save ssougnez/bc3d1100e381df592cf80153cf360b7a to your computer and use it in GitHub Desktop.
import "./assets/css/global.css";
import * as math from "./math";
let addition = math.add(5, 6);
let subtraction = math.subtract(10, 20);
console.log(addition);
console.log(subtraction);
console.log(math.pi);
console.log(math.e);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment