You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to be able to write tours for other things, explained in Gleam.
For example things I would personally like to write are.
An OTP tour
Implementing typechecking in Gleam
Implementing an interpreter in Gleam
It would be great if there was a way to something like the following
// my_tour.gleamimportgleam/tourpubfnmain(){tour.build("/build",pages())}fnpages(){[tour.Page(title:"Getting started with OTP",content:"First we need to introduce processes"
code: "
import gleam/otp
// ..."
)]}
I'm happy to help contribute to such a thing. But I think it needs a bit of design work to work out what the interface is and what should be exposed.
The text was updated successfully, but these errors were encountered:
The tour hasn't really been designed to be used a library so it would be tricky, and OTP wouldn't be possible as it runs on JavaScript rather than Erlang.
I understand that it was not designed this way. However if I found a way to make it more library friendly, would that be an interesting contribution. Or should I just be copy/pasting the code to my projects
I would like to be able to write tours for other things, explained in Gleam.
For example things I would personally like to write are.
It would be great if there was a way to something like the following
I'm happy to help contribute to such a thing. But I think it needs a bit of design work to work out what the interface is and what should be exposed.
The text was updated successfully, but these errors were encountered: