Turn on smartstring/serde with metadata.

This commit is contained in:
Stephen Chung
2021-09-28 19:19:17 +08:00
parent 87d48948f9
commit 504e695956
3 changed files with 4 additions and 3 deletions

View File

@@ -79,8 +79,8 @@ The [`scripts`](https://github.com/rhaiscript/rhai/tree/master/scripts) subdirec
Below is the standard _Fibonacci_ example for scripting languages:
```js
// This Rhai script calculates the n-th Fibonacci number using a really dumb algorithm
// to test the speed of the scripting engine.
// This Rhai script calculates the n-th Fibonacci number using a
// really dumb algorithm to test the speed of the scripting engine.
const TARGET = 28;
const REPEAT = 5;