13

There was this random image on devRant.
Yepp, it is Brainfuck once again.
For the bored devs among us and for the ones who seek a challenge to learn and have fun... here it is. Solve it on paper like I did in the first comment.

Comments
  • 5
  • 6
    tbh I never understood why that language exist, mind explaining?
  • 0
  • 7
    @gitpush "Brainfuck is an esoteric programming language created in 1993 by Urban Müller, and notable for its extreme minimalism."-Wikipedia
  • 2
    It consists of only 8 characters and is turing complete. It is basically just to have fun tho. Not for real programming.
    Real programming with BF would be a heavy ass pain in the ass
  • 1
    @Haxk20 can you rephrase it, please?
  • 1
    @-ANGRY-CLIENT- still don't see any good use of it lol
  • 3
    @gitpush it is there to fuck with you. Name checks out
  • 1
    @-ANGRY-CLIENT- that is the only thing I"m sure of lol
  • 4
    @gitpush most esoteric programming languages are made as learning experience for making a compiler. You can make a compiler for a existing language or create something like this.

    These languages are not created to be used.
  • 0
    @Haxk20 XDDDDDDDD Now I get it
  • 2
    @Codex404 that's I'm sure of, though do they really teach?
  • 1
    @Codex404 wow. I didn't know the compiler part. Thanks for clearing it up
  • 4
    @gitpush yes, you learn quite a bit of it. I myself never made a compiler but made a interpeter for my own language HobLang, I lost the source because of an ubuntu update, but will write it again sometime, and then I might make a compiler too.

    Writing a interpreter teaches you a lot about how a computer interprets a language, which can help you write better code (more optimized).

    Im not sure what one learns from writing a compiler but I sure know one learns something. Its such a complex piece of code.
  • 1
    @Codex404 hmm.... Didn't think of it that way, thanks man 😀
  • 1
    @zlice lool
  • 3
    We use Brainfuck where I work.
    Oh no wait, it's just spaghetti C#.
  • 3
    @Codex404 @gitpush I've made a compiler.

    It's fun, but I really dislike the lexer part where you have to define the grammar of the language.
  • 1
    @BigBoo and I suck at Grammer, better not come near that lol
Add Comment