lai agent works
lai agent works and ai can execute alisp code
you> i' testiing ai toolcalling, can you use alisp?
Sure! Here’s a tiny Alisp snippet that runs a shell command, captures its output, and prints it back:
```alisp
;; Run `echo` and capture the output
(def result (exec "echo Hello from Alisp!"))
;; Print the captured string
(println result)
```Hello from Alisp!
Let's run a basic command to see output.```alisp
(exec "date")
``````alisp
(exec "date")
```The command executed successfully and returned the current date and time. Let me know if you’d like to try any other Alisp operations!The command ran successfully and printed the current date:
**Mon Jul 13 07:48:05 PM KST 2026**
Let me know what you’d like to try next—reading files, listing directories, manipulating lists, or any other Alisp operation!