You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
LunarML is truly great, but I struggle a bit with the Lua integration. Yes there is documentation but it is really dense and it would be nice to show the all the subjects like call(sml->lua), call(lua->sml), datatype conversions, value exporting, with a little more detail.
Thanks for all the work.
Ben
The text was updated successfully, but these errors were encountered:
For example, with this basic example in Lua, what would be the equivalent LunarML implementation:
cat examples/core_basic_window.lua
rl.SetConfigFlags(rl.FLAG_VSYNC_HINT)
rl.InitWindow(800, 450, "raylib [core] example - basic window")
while not rl.WindowShouldClose() do
rl.BeginDrawing()
rl.ClearBackground(rl.RAYWHITE)
rl.DrawText("Congrats! You created your first window!", 190, 200, 20, rl.LIGHTGRAY)
rl.EndDrawing()
end
Hi,
LunarML is truly great, but I struggle a bit with the Lua integration. Yes there is documentation but it is really dense and it would be nice to show the all the subjects like call(sml->lua), call(lua->sml), datatype conversions, value exporting, with a little more detail.
Thanks for all the work.
Ben
The text was updated successfully, but these errors were encountered: