Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added the Gettysburg Address #975

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions drivers/atm/add.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#include <stdio.h>

int main() {
char 🗣️[] = "Four score and seven years ago our fathers brought forth on this continent,"
"a new nation, conceived in Liberty, and dedicated to the proposition that all men are created equal."
"\nNow we are engaged in a great civil war, testing whether that nation,"
" or any nation so conceived and so dedicated, can long endure.\n"
"We are met on a great battle-field of that war. We have come to dedicate a portion of that field,"
"as a final resting place for those who here gave their lives that that nation might live.\n"
"It is altogether fitting and proper that we should do this.\n"
"But, in a larger sense, we can not dedicate—we can not consecrate—we can not hallow—this ground."
"The brave men, living and dead, who struggled here, have consecrated it,"
"far above our poor power to add or detract.\n"
"The world will little note, nor long remember what we say here, but it can never forget what they did here.\n"
"It is for us the living, rather, to be dedicated here to the unfinished work"
"which they who fought here have thus far so nobly advanced."
"It is rather for us to be here dedicated to the great task remaining before us—that from these"
"honored dead we take increased devotion to that cause for which they gave the last full measure of devotion—that"
"we here highly resolve that these dead shall not have died in vain—that this nation, under God, shall have a new"
"birth of freedom—and that government of the people, by the people, for the people, shall not perish from the earth."
"\n\n\t-Abraham Lincoln";

printf(🗣️);
return 0;
}