lua_dardo_async 0.0.4 lua_dardo_async: ^0.0.4 copied to clipboard
A Lua virtual machine written in Dart, which implements Lua5.3 version, with async functions.
import 'package:lua_dardo_async/lua.dart';
Future<void> main(List<String> arguments) async {
LuaState state = LuaState.newState();
await state.openLibs();
state.registerAsync("wait", (ls) => Future.delayed(Duration(seconds: 1), () => 0));
state.loadString(r'''
print("before the wait")
wait()
print("after the wait")
''');
state.call(0, 0);
print("end of the script");
}