Skip to content

Instantly share code, notes, and snippets.

@jamesallardice
Last active August 29, 2015 14:16
Show Gist options
  • Save jamesallardice/38018ab68a76018d0d63 to your computer and use it in GitHub Desktop.
Save jamesallardice/38018ab68a76018d0d63 to your computer and use it in GitHub Desktop.
// Github recognises this as Erlang
let x = 1;
export default class Demo {
constructor( ...args ) {
this.arr = [ ...args ];
}
}
// Github recognises this as plain text
let x = 1;
export default class Demo {
constructor( ...args ) {
this.arr = [ ...args ];
}
}
// Github recognises this as ES2015
let x = 1;
export default class Demo {
constructor( ...args ) {
this.arr = [ ...args ];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment