Skip to content

Commit

Permalink
Fixed build.
Browse files Browse the repository at this point in the history
  • Loading branch information
Quahu committed Sep 21, 2023
1 parent ed78b9f commit fdf7cc5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Laylua.Playground/Program.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.Diagnostics;
using System.Globalization;
using System.Linq;
Expand Down Expand Up @@ -290,7 +290,7 @@ static int deln(lua_State* L)
lua.Execute("print(#mixed)");

var mixedTable = lua.GetGlobal<LuaTable>("mixed")!;
foreach (var kvp in mixedTable.EnumeratePairs())
foreach (var kvp in mixedTable)
{
Console.WriteLine("[{0}] = {1}", kvp.Key, kvp.Value);
}
Expand Down

0 comments on commit fdf7cc5

Please sign in to comment.