Skip to content

Commit

Permalink
two-fer: fix compilation issues (#1290)
Browse files Browse the repository at this point in the history
* two-fer: fix compilation issues

* two-fer: exchange parameter with comment

* two-fer: adjust comment

Making it more readable

Co-Authored-By: Erik Schierboom <[email protected]>
  • Loading branch information
dmahnkopf and ErikSchierboom committed Jun 30, 2019
1 parent c118226 commit c08c1d8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion exercises/two-fer/TwoFer.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
public static class TwoFer
using System;

public static class TwoFer
{
// In order to get the tests running, first you need to make sure the Speak method
// can be called both without any arguments and also by passing one string argument.
public static string Speak()
{
throw new NotImplementedException("You need to implement this function.");
Expand Down

0 comments on commit c08c1d8

Please sign in to comment.