Advertisement
Guest User

Untitled

a guest
Jul 1st, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. class Link
  2. links: []
  3. constructor: (@name, @path = "#", @section = "") ->
  4. @links.push
  5. path: @path
  6. name: @name
  7. section: @section
  8.  
  9. new Link "home", "/"
  10. new Link "wall", "/bot"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement