https://github.com/gosulja/rlua
A simple Rust to Luau translation tool (WIP)
https://github.com/gosulja/rlua
luau rust tool translator
Last synced: 12 months ago
JSON representation
A simple Rust to Luau translation tool (WIP)
- Host: GitHub
- URL: https://github.com/gosulja/rlua
- Owner: gosulja
- Created: 2024-02-09T16:32:27.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-03-25T08:19:30.000Z (over 2 years ago)
- Last Synced: 2025-03-27T10:16:03.443Z (about 1 year ago)
- Topics: luau, rust, tool, translator
- Language: Rust
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# rlua
simple rust to luau translation tool
# features
only supports dead-simple conversion, for example:
```rust
let x = 34;
let y = x * 23;
```
would be converted to:
```lua
local x = 34;
local y = x * 23;
```
[25/3/2024] This is not impressive. It was only a test for myself to see what I can do in Rust; since then I've improved my Rust skills and hopefully I'll get this project up again with more complex code conversions.
# future
function conversion