We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9de6a2a commit e8f3d3eCopy full SHA for e8f3d3e
src/lua.zig
@@ -7,6 +7,13 @@
7
//!
8
//! ## Quick Start
9
10
+//! To get started, a new `Lua` object must be created. The `Lua` struct provides a
11
+//! high-level API to Luau functionality.
12
+//!
13
+//! For convenience, `Lua` offers an `eval` function to convert Lua source code to
14
+//! Luau bytecode and execute it immediately. However, this compilation step should
15
+//! ideally be taken offline as it's resource-consuming.
16
17
//! ```zig
18
//! const std = @import("std");
19
//! const luaz = @import("luaz");
0 commit comments