Calvin Metcalf (2014-01-29T23:25:40.000Z)
So the following are equivalent?

```js
export default foo();
export let default = foo();
```
On Jan 29, 2014 5:19 PM, "Jason Orendorff" <jason.orendorff at gmail.com>
wrote:

> On Wed, Jan 29, 2014 at 2:00 PM, Erik Arvidsson
> <erik.arvidsson at gmail.com> wrote:
> > `export default 1` works.
> >
> > https://people.mozilla.org/~jorendorff/es6-draft.html#sec-exports
> >
> > ExportDeclaration :
> >   export default AssignmentExpression ;
>
> I think that just exports the value 1 with the name "default".
>
> -j
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.mozilla.org/pipermail/es-discuss/attachments/20140129/827dcbd4/attachment.html>
domenic at domenicdenicola.com (2014-02-04T20:54:03.723Z)
So the following are equivalent?

```js
export default foo();
export let default = foo();
```