Advertisement
Guest User

Untitled

a guest
Apr 26th, 2015
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. //------ lib.js ------
  2. export const sqrt = Math.sqrt;
  3. export function square(x) {
  4. return x * x;
  5. }
  6. export function diag(x, y) {
  7. return sqrt(square(x) + square(y));
  8. }
  9.  
  10. //------ main.js ------
  11. import { square, diag } from 'lib';
  12. console.log(square(11)); // 121
  13. console.log(diag(4, 3)); // 5
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement