luajitos

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

init.lua (267B)


      1 -- LAM CLI Application Entry Point
      2 -- Exposes the LAM library through the command line
      3 
      4 -- Load the LAM library
      5 local LAM = require("LAM")
      6 
      7 -- Get command line arguments from the application context
      8 local args = app.args or {}
      9 
     10 -- Run the CLI interface
     11 LAM.cli(args)