cahnory

Untitled

Jun 23rd, 2013
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. $a: ();
  2. $b: null;
  3.  
  4. @debug length($a); // 0
  5. @debug length($b); // 1
  6.  
  7. @debug 'append test';
  8. $a: append($a, test);
  9. $b: append($b, test);
  10.  
  11. @debug length($a); // 1
  12. @debug length($b); // 2
  13. @debug nth($a, 1); // test
  14. @debug nth($b, 1); //
  15. @debug '';
Advertisement
Add Comment
Please, Sign In to add comment