KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
mlx
★ 23
Open GitHub ↗
Simple JSX support for OCaml
Download README (.md)
Explore Similar Repositories
not-so-simple-ecommerce
:
No description available.
openjdk-21-android
:
OpenJDK 21 for Android
lipsim
:
LipSim [ICLR 2024]
marketplace-stats-kotlin
:
Detailed reports and statistics for paid plugins hosted on the JetBrains Marketplace.
Car_deduction
:
This project will deduct the car which passing in the video. This project need xml file and python file.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
mlx
?
Download (.md)
# mlx An experimental dialect of OCaml to support JSX calling conventions. This is *unusable alpha software*, so install at your own risk. ``` ; cat mlx_test/print.mlx --language ocaml ───────┬───────────────────────────────────────────────────────────────────────── │ File: mlx_test/print.mlx ───────┼───────────────────────────────────────────────────────────────────────── 1 │ let hello_world ~message () = 2 │ <div id="main"> 3 │ <span className="font-bold"> "hello" </span> 4 ~ │ <span className="font-bold"> (message|>string) </span> 5 │ </div> 6 │ 7 │ let () = 8 ~ │ let message = Sys.argv.(1) in 9 ~ │ Mlx_htmx.to_string (<hello_world message=message />) 10 │ |> print_string ───────┴───────────────────────────────────────────────────────────────────────── ; dune exec ./mlx_test/print.exe -- oh-camel | pup --color <html> <head> </head> <body> <div id="main"> <span classname="font-bold"> hello </span> <span classname="font-bold"> oh-camel </span> </div> </body> </html> ```