I've been reading You Don't Know JS Yet - Get Started and following along 
with the code examples.

Recently I've also started trying to execute them within Light Table.  
Here's one:

/**
 * 
 */
import { create as newBlogPost } from "2-Module-blogpost.js";

var forAgainstLet = newBlogPost(
"For and against let",
"Kyle Simpson",
"October 27, 2014",
"https://davidwalsh.name/for-and-against-let";
);

forAgainstLet.print();
// Title: For and against let
// By: Kyle Simpson
// October 27, 2014
// https://davidwalsh.name/for-and-against-let

When I try to execute this, I get the following for the first section:
SyntaxError: Unexpected reserved word at eval (native)...

Any ideas how to proceed?

Thanks, Steve

-- 
You received this message because you are subscribed to the Google Groups 
"Light Table Discussion" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to light-table-discussion+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/light-table-discussion/41cb00e3-02a6-4076-9072-ef20a9ea3c3bn%40googlegroups.com.

Reply via email to