Skip to content

Commit

Permalink
Added to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-mcdaniel committed Dec 20, 2023
1 parent be7d854 commit 24ab631
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ $ ./out
- [ ] WebAssembly
- [ ] Foreign Function Interface
- [ ] Memory Management
- [ ] Better frontend parser (switch to [Nom](https://crates.io/crates/nom)?)
- [ ] A package manager
- [ ] AST Macros

Expand Down
11 changes: 7 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
//! # The Sage Programming Language
//!
//! <div align="center">
//! <h1>🌿🌱<b>sage</b>🪴🍃</h1>
//! <h1>🌿🌱<b>Sage</b>🪴🍃</h1>
//! <p>
//! <strong>Sage advice for your coding conundrums!</strong>
//! </p>
//! <p float="left">
//! <img src="./assets/code1.png" width="29.5%"/>
//! <a href="https://adam-mcdaniel.net/sage"><img src="./assets/sage.png" width="68%"/></a>
//! <img src="https://github.com/adam-mcdaniel/sage/blob/main/assets/code1.png?raw=true" width="29.5%"/>
//! <a href="https://adam-mcdaniel.net/sage"><img src="https://github.com/adam-mcdaniel/sage/blob/main/assets/sage.png?raw=true" width="68%"/></a>
//! </p>
//! <p>
//! 🚧 🏗️ ⚠️ This language is under construction! ⚠️ 🏗️ 🚧
//! </p>
//! <br>
//! </div>
//!
//! 🚧 🏗️ ⚠️ This language is under construction! ⚠️ 🏗️ 🚧
//!
//! <embed type="text/html" src="web/index.html" title="Compiler" width="100%" height="940em"></embed>
//! ***(The sage compiler itself can be compiled to web assembly to be executed on the web. This allows a sage compiler + interpreter to be hosted on a static web page and run embedded sage scripts. This web implementation compiles sage LIR code into sage virtual machine code, and then feeds it to a builtin virtual machine interpreter. The compiler can also switch to various backends, such as the C source code generator, or assembly output.)***
Expand Down

0 comments on commit 24ab631

Please sign in to comment.