aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md5
1 files changed, 1 insertions, 4 deletions
diff --git a/README.md b/README.md
index a1ef970..3bef2e8 100644
--- a/README.md
+++ b/README.md
@@ -26,11 +26,8 @@ To update Lunar Shell pull the repo and run the install script again.
## Lua Shell Scripting
-<p align="center">
- <img width="512" height=auto src="https://github.com/BanceDev/lush/blob/main/demo.png">
-</p>
-
```lua
+-- example lua script to compile a C file
if args ~= nil and args[1] ~= nil then
if args[1]:match("%.c$") then
lush.exec("gcc -o " .. args[1]:sub(1, -3) .. " " .. args[1])