-4
I'm surprised this hasn't been done yet, but here we go.
Create a program which prints some number of 1s (ideally as large as possible) before halting.
The rules are simple:
Your program is bounded to 50 bytes in size.
Your output must only be a continuous row of 1s (plus trailing newline if it has to be added), without any breaks in the middle.
Your program must halt. No infinite loops.
Your program must not use STDIN or output to STDERR.
Your program must use STDOUT or closest equivalent.
Your score is the amount of 1s your program prints before halting.
Have fun.
4
Well, there have been many extremely related challenges, with the only significant difference that they didn't arbitrarily demand unary output (https://codegolf.stackexchange.com/questions/18028/largest-number-printable is the first one I can recall; there have been some like "Golf a number bigger than [insert large number name here]")
– my pronoun is monicareinstate – 2019-10-22T15:12:02.057I was looking to emulate busy beaver Turing machines in this challenge. – Andrew – 2019-10-22T15:13:24.517