A Pen by Laura Kelly on CodePen.
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
package main; | |
public class OddNumbers { | |
public static void main(String[] args){ | |
for (int number = 0; number < 100; number++){ | |
if (number % 2 != 0) { | |
System.out.println(number); | |
} | |
} | |
} |
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 number in range(0, 100): | |
if not number % 2 == 0: | |
print number |
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
print range(1, 100, 2) |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<link rel="stylesheet" type="text/css" href="style.css"> | |
</head> | |
<body> | |
<div id="graph"> | |
<h1>Connecting Two Points with a Line in D3.js</h1> | |
</div> | |
#Official Docs
#Facebook Official Examples
#Fluxxor Library Examples
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
[:span.fa-stack.circle-plus-light | |
[:i.fa.fa-circle-thin.fa-stack-2x] | |
[:i.fa.fa-plus.fa-stack-1x]] |