DEV Community

Cover image for Code that replicates itself(not recursion)
Shuvo
Shuvo

Posted on

3 1

Code that replicates itself(not recursion)

This thing called virus is crazy as hell, right? Like some dude out of nowhere got infected by COVID-19 virus. Now the world is going through this huge pandemic. That is due to their ability to replicate.
Computer virus

The situation is similar with digital virus aka computer virus. If somehow just one virus can enter your computer, in right condition it will create millions of copies of itself.
So what is a computer virus? A computer is just some code that has the ability to replicate itself. Code that can output itself is called Quine.
However a code that simply just reads itself is not a Quine.

#not a quine
print(open(__file__).read())
Enter fullscreen mode Exit fullscreen mode

Code for a quine is made out of two parts:

  1. code used to do the printing
  2. data representing textual form of the code

Here's an example of quine in Python

q='q=%r;print (q%%q)';print (q%q)

#output: q='q=%r;print (q%%q)';print (q%q)
Enter fullscreen mode Exit fullscreen mode

And in JS:

($=_=>`($=${$})()`)()

//output in console: ($=_=>`($=${$})()`)()
Enter fullscreen mode Exit fullscreen mode

You can find more examples of quine by following these links: JavaScript Quines, Python Quines

That's all for now. Make sure you check out my other articles and YT tutorials.




Top comments (0)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay