Skip to content

Commit

Permalink
Tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
akameco committed Nov 5, 2017
1 parent f024572 commit bc0fa47
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions examples/typescript/src/index.ts
Expand Up @@ -3,7 +3,5 @@ function greet(name: string) {
}

for (var i = 1; i < 10; i++) {
console.log(
i % 15 === 0 ? 'FizzBuzz' : i % 3 === 0 ? 'Fizz' : i % 5 === 0 ? 'Buzz' : i
)
console.log(i)
}

0 comments on commit bc0fa47

Please sign in to comment.