Revision ac7459d9d763f4d04a5f4d68fbbfd7d793b75278 authored by Katie Hyatt on 22 February 2017, 00:49:21 UTC, committed by Katie Hyatt on 22 February 2017, 00:57:37 UTC
Create a DiffStat type so that we can get more information
about GitDiffs. Add a show method for this type and GitDiff.
Also add methods to get the number of files changed/insertions/
deletions in the diff.
1 parent d168287
Raw File
quine.jl
# This file is a part of Julia. License is MIT: http://julialang.org/license

x="println(\"# This file is a part of Julia. License is MIT: http://julialang.org/license\\n\\nx=\$(repr(x))\\n\$x\")"
println("# This file is a part of Julia. License is MIT: http://julialang.org/license\n\nx=$(repr(x))\n$x")
back to top