https://github.com/dawee/crush
Command line Lua using Love
https://github.com/dawee/crush
command-line love2d lua
Last synced: 2 months ago
JSON representation
Command line Lua using Love
- Host: GitHub
- URL: https://github.com/dawee/crush
- Owner: dawee
- Created: 2017-08-30T21:21:33.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-08-31T11:14:58.000Z (almost 9 years ago)
- Last Synced: 2025-06-25T14:52:29.474Z (about 1 year ago)
- Topics: command-line, love2d, lua
- Language: Lua
- Homepage:
- Size: 111 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Crush
Crush is a script that runs Lua script using the interpreter embedded inside [Love](https://love2d.org).
## Usage
Create a Lua script (eg: random.lua)
```lua
print("Here is a random number : " .. love.math.random())
```
Run it using crush
```sh
$ crush random.lua
Here is a random number : 0.68980386685727
```