fable-compiler / repl

Fable online REPL
http://fable.io/repl
MIT License
64 stars 37 forks source link

List.chunkBySize doesn't work #105

Closed Aoi-Erimiya closed 4 years ago

Aoi-Erimiya commented 4 years ago

List.chunkBySize is doesn't work.

Oddly, printfn "start" and printfn "end" also do not work.

let list1 = [ 1 .. 10 ]

printfn "start"
printfn "%A" (List.chunkBySize 2 list1)
printfn "end"
MangelMaxime commented 4 years ago

We need to publish a new version of the REPL.

List.chunckBySize has been added to Fable the 31 Oct 2019 but the latest REPL version if from 30 Sep 2019

Aoi-Erimiya commented 4 years ago

Thank you. Wait for the latest version to be released.

MangelMaxime commented 4 years ago

A new version of the REPL has been published, you can now use List.chunkBySize in it

Aoi-Erimiya commented 4 years ago

@MangelMaxime Wonderful! Thank you for teaching me!