Print itself: Difference between revisions

m (→‎{{header|Z80 Assembly}}: displayed bytecode alongside assembly)
Line 56:
$ go run self_print.go
</pre>
 
=={{header|jq}}==
{{works with|jq}}
'''Works with gojq, the Go implementation of jq'''
 
A jq program that contains any JSON entity formatted as though by jq will print itself. The shortest such program would be a single digit, e.g.:
<lang jq>0</lang>
{{out}}
Example invocation: jq -n 0
<pre>
0
</pre>
 
 
=={{header|Julia}}==
2,442

edits