Created
April 10, 2017 04:57
-
-
Save disnet/34bf5e9a3bfc5061ddcf91414d37674b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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