Skip to content

Instantly share code, notes, and snippets.

@nkanaev
Created April 26, 2017 14:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nkanaev/ac6851355cf8d5c3552454ecf5bdd387 to your computer and use it in GitHub Desktop.
Save nkanaev/ac6851355cf8d5c3552454ecf5bdd387 to your computer and use it in GitHub Desktop.
@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