ZCubes/Quine Computing

From ZCubes Wiki
Revision as of 05:19, 17 September 2021 by Swapna (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Quine Computing


Quines are computer programs that produces the source code of the program itself as the output. Quines may be used for creating self-replicating or self-modifying programs. This video demonstrates how to create quines using Z.

Video


Quine Computing















ZCubes code


function q(a,b,c )
{console.log(eval(arguments.callee.name)+"");
a=1;
b=34;
return(a+b)
};
q()




© Copyright 1996-2021, ZCubes, Inc.