From 68813c26527fdd3308f73b060180f1757b2dc580 Mon Sep 17 00:00:00 2001 From: Seth Schoen Date: Mon, 24 Aug 2026 12:39:14 -0700 Subject: [PATCH] Remove discouragement, add developer docs link --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4a616dec..275a707a 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,6 @@ SimplicityHL is a high-level language for writing Bitcoin smart contracts. SimplicityHL looks and feels like [Rust](https://www.rust-lang.org). Just how Rust compiles down to assembly language, SimplicityHL compiles down to [Simplicity](https://github.com/BlockstreamResearch/simplicity) bytecode. Developers write SimplicityHL, full nodes execute Simplicity. -**SimplicityHL is a work in progress and is not yet ready for production use.** - ```rust let a: u32 = 10; let b = { @@ -16,6 +14,8 @@ let b = { assert!(jet::eq_32(b, 7)); ``` +Check the [developer documentation](https://docs.simplicity-lang.org/) to learn more about how to use SimplicityHL and its associated tools, including quickstart demos. + Take a look at the [example programs](https://github.com/BlockstreamResearch/SimplicityHL/tree/master/examples). ## MSRV