using System.Collections.Generic;
public static void Main()
Console.WriteLine("Hello World");
static List<string> loadedBundles = new List<string>();
static object LoadBundle(string bundleName)
bundleName = bundleName.Trim().ToLower();
if (loadedBundles.Contains(bundleName))
Console.WriteLine("Bundle '" + bundleName + "' is already loaded. Skipping...");
loadedBundles.Add(bundleName);
Console.WriteLine("Loading bundle: " + bundleName);