woonki
woonki
Currently only works on apple silicon macs with rosetta 2 installed. If you don't install it, you will get an error that the CPU TYPE is not correct.
```res @spice type tOp = { label: option, value?: int, } let sample2 = Js.Dict.empty() sample2->Js.Dict.set("label", Js.Json.string("sample")) let sampleJson2 = sample2->Js.Json.object_ let sampleRecord2: Records.tOp = { label: Some("sample"), } let...
To support the feature to encode/decode json for the variant with inline recoard: - [ ] 1. Definition of json format corresponding to the variant with inline record. * It...
#14 #### Test You need to build the ppx_vector with dune first. And add `packages/vector/ppx_vector/ppx` in bsconfig.json as ppx_flag. The `ppx` is referring to the built executable binary. #### CI...
I've installed the latest version of rescript-vector to my rescript project for the test. Actually, I've made up the ppx extension of `%vec`. But, I faced the build error as...
Hi, thank you for your fantastic work. I'm very new to clj and cljs. It might be a simple issue, but I can't figure out how to fix. I'd like...
```res let i0 = (22130921800000. -. 0.)->Belt.Float.toInt let i1 = (22130921800000.)->Belt.Float.toInt ``` generates ```js var i0 = 22130921800000 - 0 | 0; // -1044676288 var i1 = 2147483647; // max...
## Background In the current ReScript design, operators for `int` and `float` types are distinct, requiring developers, especially those familiar with JavaScript, to learn and remember separate operators for these...
```res let fee = 1. == 1. let feee = 1. === 1. let fne = 1. != 1. let fnee = 1. !== 1. let fgte = 1. >=...