mirror of
https://github.com/jwetzell/QControlKit.git
synced 2026-08-07 08:23:53 +00:00
Fix? Cue initialization...some funky recursion stuff?
This commit is contained in:
@@ -418,10 +418,12 @@ namespace QSharp
|
||||
#region Printing
|
||||
public void Print()
|
||||
{
|
||||
foreach(var cueList in root.cues)
|
||||
Console.WriteLine($"[workspace] {name}");
|
||||
foreach (var cueList in root.cues)
|
||||
{
|
||||
cueList.Print();
|
||||
}
|
||||
Console.WriteLine("[workspace] End of Workspace");
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user