Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Challenges

Post History

60%
+1 −0
Challenges Obligatory Quine Challenge

Japt, 9 bytes All credit to ETH on this one. 9îQi"9îQi Test it 9î :Repeat the following to length 9 Q : Quotation mark i"9îQi : Prepend "9îQi" And, for th...

posted 3y ago by Shaggy‭

Answer
#1: Initial revision by user avatar Shaggy‭ · 2021-06-22T09:27:28Z (almost 3 years ago)
# [Japt](https://github.com/ETHproductions/japt), 9 [bytes](https://en.wikipedia.org/wiki/ISO/IEC_8859-1)

[All credit to ETH](https://codegolf.stackexchange.com/a/156362/58974) on this one.

    9îQi"9îQi

[Test it](https://petershaggynoble.github.io/Japt-Interpreter/?v=1.4.6&code=Oe5RaSI57lFp)

    9î            :Repeat the following to length 9
      Q           :  Quotation mark
       i"9îQi     :  Prepend "9îQi"

And, for the sake of completeness, the original 10 byte Japt quine, again with [all credit to ETH](https://codegolf.stackexchange.com/a/71932/58974):

    "iQ ²"iQ ²

[Test it](https://petershaggynoble.github.io/Japt-Interpreter/?v=1.4.6&code=ImlRILIiaVEgsg)

    "iQ ²"         :Literal string
          i        :Prepend
           Q       :  Quotation mark
             ²     :Repeat twice