Unverified Commit d0f681dc authored by Vinicius Jarina's avatar Vinicius Jarina Committed by GitHub
Browse files

Update README.md

parent 16e2b484
...@@ -102,7 +102,7 @@ Passing raw values to the state: ...@@ -102,7 +102,7 @@ Passing raw values to the state:
```csharp ```csharp
double val = 12.0; double val = 12.0;
state ["x"] = val; // Create a global value 'x' state ["x"] = val; // Create a global value 'x'
var res = state.DoString ("return 10 + x*(5 + 2)")[0] as double; var res = (double)state.DoString ("return 10 + x*(5 + 2)")[0];
``` ```
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment