Advertisement
Guest User

Untitled

a guest
Apr 20th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. A code chunk's lines of code must be in the same order you want them to be when the code is converted for the computer.
  2. ```
  3. <<a>>=
  4. console.log(foo)
  5. @
  6.  
  7. <<a>>+
  8. var foo = "bar"
  9. @
  10.  
  11. Foo needs to be set as bar because of blah blah blah...
  12. ```
  13.  
  14. This is because the above chunk will be tangled into:
  15.  
  16. console.log(foo)
  17. var foo = "bar"
  18.  
  19. which is not legal JavaScript.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement