-
JS has the following syntax for RegExp literals:
```js
const myRegExp = /ab+c/;
```
In ReScript, this would currently be expressed as
```rescript
let myRegExp = %re("/ab+c/")
```
It wo…
-
> Warning: these are exploratory high-level ideas. It would not be surprising to find major holes in them. But at least there's an attempt to go beyond the surface and consider simple semantic models.…
-
Example code:
```rescript
open Js
let min = -2147483648
let max = 2147483647
let value = 1000000000
Console.log(min->Int.toFloat -. value->Int.toFloat)
Console.log(max->Int.toFloat +. value…
-
Warning: react-signature-pad-wrapper: `ref` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pa…
-
Especially considering uncurried mode and RescriptCore and whatever came up in discussions: https://forum.rescript-lang.org/t/the-big-migration-thread-for-rescript-v11-and-uncurried-mode
Possible i…
-
I have a traced model that works correctly on Python and C++. However, when i try loading it in Android, I’m getting **inconsistent** output tensors on **every run**. I did call `model.eval()` before …
-
Right now the vite plugin depends on [reading `build.ninja`](https://github.com/zth/rescript-relay-router/blob/7a2a876017bde80c9cb34ca8031cf472ecbd2b6a/packages/rescript-relay-router/vite-plugins/Resc…
-
Versions
* rescript: 9.1.4
* react: 17.0.2
* @rescript/react: 0.10.1
this document could be aided a touch: pages/docs/react/latest/installation.mdx
Two recommednations for improvement. First …
-
On the https://rescript-lang.org/docs/manual/latest/migrate-from-bucklescript-reason page it says to use npx rescript convert -all to upgrade all files to rescript from reason but the -all flag does n…
-
I am using vite + your plugin to create Google Apps Scripts (AddOns for Google Sheets).
All JS and CSS have to be inlined, so that works perfectly.
The issue that i have is, that i need multip…