
u/StrikingClub3866

Does Lisp really allow infinite parentheses???
reddit.comWhy is there a Ukraine flag? This is a programming sub
Sorry but am I missing something?
Finished first day of 8th grade!
I was sick so I got sent ghome early but still though
New human life should morally / legally begin at:
This post contains content not supported on old Reddit. Click here to view the full post
Which Ideology is less bad?
This post contains content not supported on old Reddit. Click here to view the full post
Raising taxes for the rich is stupid. They already pay 38% of all taxes.
Instead, raising minimum wage to $20 but raising taxes slightly would greatly help lives at home.
Additionally, socialism would not work as it removes money from already-poor people.
And just communism/anarcho-capitalism? No. Just no.
Is there any other way you would propose it?
Are these murderers? Are they neo-nazis? No. They're ANTIFA.
"just put them up for adoption"
people need to understand just how horrible the system can be.
edit: The amount of people in the comments comparing what i said to murder just proves my point. Sure we can't predict what someone's life would be like before they are born, but if a parent is not ready to have a child, then they are not ready to have one.No one should force them to. End of story.
edit 2: alright i get it some of yall think that getting an abortion is murder because the fetus doesn't get a say in werther they want to live or not. you can stop telling me to kms now, thanks.
Python got a case of dementia. It asked Rust why it didn't have any brain issues. "Because I have memory safety."
Is anybody gonna laugh now? Yeah I'll go 😢
I wrote a Brainfuck clone
It's basically BF but with better and more commands.
--- INSTRUCTION SET ---
inc - Increments current cell by 1.
dec - Decrements current cell by 1.
out - Outputs ASCII value of current cell.
out_lit - Outputs literal value of current cell.
in - Asks for input of the ASCII value of every cell combined behind the head (until the cell is empty), then writes an empty character ahead of the head, then the input string's ASCII values of each letter, THEN another empty cell.
jmp_st - If the current cell is 0, advances the program counter (PC) right until jmp_en. If not, execute the following instructions until the current cell is non-zero or empty.
jmp_en - Ends a jump-if-zero loop.
left - Moves head to the left.
right - Moves head to the right.
clear - Sets current cell to 0.
add - Adds the last two cells to the left together and sets the current cell to the result.
sub - Subtracts the last two cells to the left together and sets the current cell to the result.
mult - Multiplies the last two cells to the left together and sets the current cell to the result.
div - Divides the last two cells to the left together and sets the current cell to the result.
rand - Generates a random number, with the cell to the left being the minimum, and the cell two cells back being the maximum, then setting the current cell to the result.
<begin> - Begin a multi-line comment.
<end> - Ends a multi-line comment.
goto - Goes directly to a line, defined by the value held by the current cell.
exit - Exits the program with an error code, based off the current cell.