Created
June 9, 2016 14:14
-
-
Save masaru-b-cl/8d0ce7734c8beb29ea9a87201889abc8 to your computer and use it in GitHub Desktop.
replace literal value
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 characters
using System; | |
namespace FizzBuzz | |
{ | |
public class FizzBuzzer | |
{ | |
public FizzBuzzer() | |
{ | |
} | |
public string Say(int number) | |
{ | |
return $"{number}"; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment