For God so loved the world, that he gave his only Son, that whoever believes in him should not perish but have eternal life.
Created
March 29, 2012 17:19
-
-
Save ebsen/2240217 to your computer and use it in GitHub Desktop.
Various files for debugging base color of Solarized (light)
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
# John 3:16 | |
For God so loved the world, that he gave his only Son, that whoever believes in him should not perish but have eternal life. |
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
if (book === "John") { | |
if (chap === 3) { | |
if (verse === 16) { | |
console.log("For God so loved the world, that he gave his only Son, that whoever believes in him should not perish but have eternal life."); | |
} | |
} | |
} else { | |
console.log("This is a verse other than John 3:16."); | |
} |
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
# John 3:16 | |
For God so loved the world, that he gave his only Son, that whoever believes in him should not perish but have eternal life. |
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
if (book === "John") { | |
if (chap === 3) { | |
if (verse === 16) { | |
console.log("For God so loved the world, that he gave his only Son, that whoever believes in him should not perish but have eternal life."); | |
} | |
} | |
} else { | |
console.log("This is a verse other than John 3:16."); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment