Skip to content

Instantly share code, notes, and snippets.

@disnet
Created April 10, 2017 04:57
Show Gist options
  • Save disnet/34bf5e9a3bfc5061ddcf91414d37674b to your computer and use it in GitHub Desktop.
Save disnet/34bf5e9a3bfc5061ddcf91414d37674b to your computer and use it in GitHub Desktop.
// log.js
'lang sweet.js';
export function log(msg) {
console.log(msg);
}
// main.js
import { log } from './log.js' for syntax;
syntax m = ctx => {
log('doing some Sweet things');
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment