Last active
July 31, 2019 03:17
-
-
Save danielbdias/604d7e12dd160da8cd0a3a8a65e6e5b5 to your computer and use it in GitHub Desktop.
Revisions
-
danielbdias revised this gist
Jul 31, 2019 . No changes.There are no files selected for viewing
-
danielbdias revised this gist
Jul 31, 2019 . 1 changed file with 1 addition and 4 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,7 +3,6 @@ def ligar_com(treco) # ... Coisa.new end # ... end @@ -16,7 +15,6 @@ class Coisa end class Program def execute coiso = Coiso.new treco = Treco.new @@ -25,5 +23,4 @@ def execute coisa end end -
danielbdias renamed this gist
Jul 31, 2019 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
danielbdias created this gist
Jul 31, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,29 @@ class Coiso def ligar_com(treco) # ... Coisa.new end # ... end class Treco # ... end class Coisa # ... end class Program def execute coiso = Coiso.new treco = Treco.new coisa = coiso.ligar_com(treco) coisa end end