Skip to content

Instantly share code, notes, and snippets.

@kaihowl
Created November 26, 2012 15:19
Show Gist options
  • Save kaihowl/4148745 to your computer and use it in GitHub Desktop.
Save kaihowl/4148745 to your computer and use it in GitHub Desktop.
module math {
export function sum(x, y) {
return x + y;
};
export var pi = 3.141593;
};
import {sum, pi} from math;
import * from math;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment