Guest User

Untitled

a guest
Feb 24th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. A simple function would look like:
  2.  
  3. ```php
  4. function foo(array $bar) {
  5. foreach ($bar as $key => $value) {
  6. echo "$key: $value\n";
  7. }
  8. }
  9. ```
  10.  
  11. A simple document would look like:
  12.  
  13. ```html
  14. <html>
  15. <body>
  16. <h1>Hello World!!!</h1>
  17. </body>
  18. </html
  19. ```
Add Comment
Please, Sign In to add comment