From 5711ca218ebe7694957816d8f9c2de95c11b1358 Mon Sep 17 00:00:00 2001 From: CPunch Date: Fri, 29 Dec 2023 18:18:22 -0600 Subject: [PATCH] improved readme, added asciinema demo --- README.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4de3d79..d95ce94 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,4 @@ # Cosmo -[![Check Build](https://github.com/CPunch/Cosmo/actions/workflows/check_build.yaml/badge.svg?branch=main)](https://github.com/CPunch/Cosmo/actions/workflows/check_build.yaml) - -## Usage ``` Usage: ./bin/cosmo [-clsr] [args] @@ -13,6 +10,13 @@ available options are: -r start the repl ``` +

+ Workflow + License +
+ +

+ ## What is a 'cosmo'? Cosmo is a portable scripting language loosely based off of Lua. Cosmo easily allows the user to extend the language through the use of Proto objects, which describe the behavior of Objects. For example the following is a simple Vector Proto which describes behavior for a Vector-like object.