Skip to content

Commit 598349c

Browse files
authored
Update README.md
1 parent ec91eda commit 598349c

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed

README.md

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,7 @@
44
[![CodeQL](https://github.com/dkackman/chia-dotnet-clvm/actions/workflows/github-code-scanning/codeql/badge.svg)](https://github.com/dkackman/chia-dotnet-clvm/actions/workflows/github-code-scanning/codeql)
55
[![Nuget](https://img.shields.io/nuget/dt/chia-dotnet-clvm)](https://www.nuget.org/packages/chia-dotnet-clvm/)
66

7-
A (very much WIP) port of [node-clvm-lib](https://github.com/Chia-Network/node-clvm-lib).
8-
9-
## Status
10-
11-
- All of the code is ported including units tests.
12-
- 845/856 unit tests are passing.
7+
A direct port of [Rigidity](https://github.com/Rigidity)'s [node-clvm-lib](https://github.com/Chia-Network/node-clvm-lib).
138

149
## See Also
1510

@@ -18,6 +13,18 @@ A (very much WIP) port of [node-clvm-lib](https://github.com/Chia-Network/node-c
1813
- [chia-dotnet-bls](https://www.nuget.org/packages/chia-dotnet-bls/)
1914
- [chia-blockchain](https://chia.net)
2015

16+
## Examples
17+
18+
### Hello World
19+
20+
```csharp
21+
var puzzleProgram = Program.FromSource("(q . \"hello world\")");
22+
var result = puzzleProgram.Compile();
23+
24+
Console.WriteLine(result.Value);
25+
Console.WriteLine(result.Cost);
26+
```
27+
2128
___
2229

2330
_chia and its logo are the registered trademark or trademark of Chia Network, Inc. in the United States and worldwide._

0 commit comments

Comments
 (0)