From 9ba2f806925f11e099a9fa404a3f8085ecf68244 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20B=20Nagy?= <20251272+BNAndras@users.noreply.github.com> Date: Thu, 10 Apr 2025 08:02:24 -0700 Subject: [PATCH] Update return type for BottleSong stub --- exercises/practice/bottle-song/BottleSong.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/exercises/practice/bottle-song/BottleSong.cs b/exercises/practice/bottle-song/BottleSong.cs index 68dd489b6..2e50b3c76 100644 --- a/exercises/practice/bottle-song/BottleSong.cs +++ b/exercises/practice/bottle-song/BottleSong.cs @@ -1,7 +1,9 @@ +using System.Collections.Generic; + public static class BottleSong { - public static string Recite(int startBottles, int takeDown) + public static IEnumerable Recite(int startBottles, int takeDown) { throw new NotImplementedException("You need to implement this method."); } -} \ No newline at end of file +}