Code golf: Reverse quine
- by Eduardo León
Write a program that outputs the reverse of its source code as a string. If the source is
abcd
efg
(i.e., the C string "abcd\nefg")
Then the output should be
gfe
dcba
(i.e., the C string "gfe\ndcba")
Bonus points for using esoteric languages such as brainf*ck.
*EDIT:** Removed the unnecessary \0 characters.+