-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed a trailing semicolon in variadics (#61)
- Optimized iterator ID - Added variadic tests
- Loading branch information
Torben Köhn
committed
Feb 3, 2016
1 parent
d297693
commit b355159
Showing
3 changed files
with
38 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
|
||
mixin item(title, ...items) | ||
|
||
h1= $title | ||
each $item in $items | ||
item(name=$item['name'], id=$item['id']) | ||
|
||
|
||
|
||
+item('Test 1', $items[0], $items[1], $items[3]) | ||
+item('Test 2', $items[4], $items[5], $items[6]) |