-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* More documentation * Javascript doc * More doc * More * More * More * More * More * More * More
- Loading branch information
1 parent
5e1717b
commit 4f12586
Showing
35 changed files
with
1,271 additions
and
370 deletions.
There are no files selected for viewing
This file contains 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 characters
This file contains 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 characters
This file contains 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 characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
namespace Hello.Main; | ||
|
||
public interface HelloConsole { | ||
void Print(String text); | ||
void Print(String text); | ||
} | ||
|
||
public class HelloSystemConsole : HelloConsole | ||
{ | ||
public void Print(String text) { | ||
Console.WriteLine(text); | ||
} | ||
public void Print(String text) { | ||
Console.WriteLine(text); | ||
} | ||
} |
This file contains 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 characters
This file contains 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 characters
This file contains 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 characters
This file contains 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 characters
This file contains 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 characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
package main | ||
|
||
type HelloApp struct { | ||
message HelloMessage | ||
console HelloConsole | ||
message HelloMessage | ||
console HelloConsole | ||
} | ||
|
||
func (app *HelloApp) PrintHello() { | ||
app.console.Print(app.message.Text()) | ||
app.console.Print(app.message.Text()) | ||
} |
Oops, something went wrong.