Guest User

Untitled

a guest
Jan 24th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. html = {
  2. header = {
  3. title = "some site";
  4. };
  5. body = {
  6. paragraph = {
  7. "Hello!"
  8. };
  9. };
  10. };
  11.  
  12. vs
  13.  
  14. <html>
  15. <header>
  16. <title>some site</title>
  17. </header>
  18. <body>
  19. <p>Hello!</p>
  20. </body>
  21. </html>
Add Comment
Please, Sign In to add comment