Created
April 26, 2017 14:36
-
-
Save nkanaev/ac6851355cf8d5c3552454ecf5bdd387 to your computer and use it in GitHub Desktop.
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
@for $i from 1 through 100 { | |
@if $i % 15 == 0 { | |
#{$i} { is: "fizzbuzz"} | |
} @else if $i % 3 == 0 { | |
#{$i} { is: "fizz" } | |
} @else if $i % 5 == 0 { | |
#{$i} { is: "buzz" } | |
} @else { | |
#{$i} { is: "-" } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment