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
{{ message }}
This repository was archived by the owner on Apr 5, 2025. It is now read-only.
I wrote a game using Fable Elmish that has more that 2000LoC of non-trivial game logic executed both in the browser and on the server. When I needed to port it to a platform accepting only Php backend, the simplest option would have been to rewrite the server side to php. But it would have led to heavy code duplication in two different languages.
6
+
7
+
This is why I tried to transpile F# to Php the same way Fable does to Javascript
8
+
9
+
## How it works
10
+
11
+
Peeble use Fable transforms to parse F# files and create a simpler intermediate representation. It then convert this to a Php model before serializing it to text.
0 commit comments