Last active
May 29, 2020 21:56
-
-
Save dbredvick/859e47dcac6bd9f45b05e8f2d336d004 to your computer and use it in GitHub Desktop.
https://en.wikipedia.org/wiki/Martin_Niem%C3%B6ller | https://www.goodreads.com/quotes/29995-throughout-history-it-has-been-the-inaction-of-those-who
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
const stanzaOne = `First they came for the socialists, and I did not speak out— | |
Because I was not a socialist.` | |
const stanzaTwo = `Then they came for the trade unionists, and I did not speak out— | |
Because I was not a trade unionist.` | |
const stanzaThree = `Then they came for the Jews, and I did not speak out— | |
Because I was not a Jew.` | |
const stanzaFour = `Then they came for me—and there was no one left to speak for me.` | |
const poem = [stanzaOne, stanzaTwo, stanzaThree, stanzaFour]; | |
console.log(poem.join('\n')); | |
const BLM = `#BLACKLIVESMATTER`; | |
console.log(BLM); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment