Slide 6
Slide 6 text
Split into 2 hunks.
@@ -1,2 +1,4 @@
+# This is just an example comment.
+
module GitExample
class Person
Stage this hunk [y,n,q,a,d,/,j,J,g,e,?]? y
@@ -1,4 +3,13 @@
module GitExample
class Person
+ attr_reader :name
+
+ def initialize(name)
+ @name = name
+ end
+
+ def to_s
+ ""
+ end
end
end
Stage this hunk [y,n,q,a,d,/,K,g,e,?]? n