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
play [-1, -1, 0, 0, 2] | |
## | |
# e [----] | |
# b [----] | |
# G [--0-] | |
# D [--0-] | |
# A [--2-] | |
# E [----] | |
play [4] |
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
class FibonacciPair<T> : Tuple<T, T> | |
{ | |
public T A { get; private set; } | |
public T B { get; private set; } | |
public FibonacciPair(T a, T b) : base(a, b) | |
{ | |
A = a; | |
B = b; | |
} |