Why does Lua loadstring() not work on the demo site?

Dr.YSG

I am trying to test out the Lua loadstring function.

This example is taken direction from the Lua documentation:

f = loadstring("i = i + 1")

However, when I try to run it at:

https://www.lua.org/cgi-bin/demo

I get the following error:

input:1: attempt to call a nil value (global 'loadstring')
Azdle

loadstring is not available in Lua past version 5.1. The demo you linked is running Lua 5.3. You can prove this by running the program print(_VERSION).

In Lua 5.2 an later your code should use load, here is an example program you can run that loads a chunk from a string:

local f = load("return 2 + 2")
print(f())

この記事はインターネットから収集されたものであり、転載の際にはソースを示してください。

侵害の場合は、連絡してください[email protected]

編集
0

コメントを追加

0

関連記事

分類Dev

How does setmetatable() work and why the metatable is needed in the linked list in lua

分類Dev

why does innerHTML not work?

分類Dev

Why does this Firebase ".indexOn" not work?

分類Dev

Why does not it work async pipe?

分類Dev

Why does Horspool not work on binaries?

分類Dev

why does this negative lookahead not work?

分類Dev

Why does sudo not work with curl?

分類Dev

Why source maps does not work?

分類Dev

why does a constructor work this way?

分類Dev

Why does this rename operation not work?

分類Dev

Love2D Lua no idea why this doesn't work

分類Dev

Roblox 2009 Lua:Loadstringのエラーを取得する

分類Dev

luaのloadstring()がテーブルで機能しない

分類Dev

Why does this piece of Golang code not work?

分類Dev

Why does this backreference not work inside a lookbehind?

分類Dev

Why does :host(:hover) not work here?

分類Dev

Why does the code . shortcut not work on OSX?

分類Dev

Why does #[derive(Show)] not work anymore?

分類Dev

Why my implicit function parameter does not work?

分類Dev

Why does a deserialized TDictionary not work correctly?

分類Dev

Why does a deserialized TDictionary not work correctly?

分類Dev

Why does zipWith.zipWith work?

分類Dev

Why does the break statement not work here?

分類Dev

Why git alias with push does not work?

分類Dev

why does css cursor not work for styled scrollbar

分類Dev

Why does my method for collision detection not work?

分類Dev

Why does sorting a JS array of numbers with < work?

分類Dev

Why does my "INSERT INTO" Statement not work?

分類Dev

Why does my if statement work with an else if, but not an OR operator

Related 関連記事

ホットタグ

アーカイブ