package bos
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page
Basic OS interaction for OCaml
Install
dune-project
Dependency
Authors
Maintainers
Sources
bos-0.3.0.tbz
sha512=77416442448462fb316b9b64ec213038153e82c6de030d511838a15bb13b80700598c1bcfae1c90ef766d4f42c9bf5dcf231eeff23709558246d7946962858cc
doc/bos.setup/Bos_setup/index.html
Module Bos_setupSource
Quick setup for simple programs.
Linking against this module setups Logs and issuing:
open Bos_setupin a module is sufficient to bring Rresult, Astring and Bos in scope. See also how to use this for interpreted programs.
Interpreted programs
To use Bos and this setup in an interpreted program, start the file with:
#!/usr/bin/env ocaml
#use "topfind"
#require "bos.setup"
open Bos_setupTo allow merlin to function correctly issue M-x merlin-use bos.setup in emacs or :MerlinUse bos.setup in vim.
Results
Astring
strf is Astring.strf.
^ is Astring.(^).
Bos
Fmt & Logs
Note. The following aliases are strictly speaking not needed but they allow to end-users to use them by expressing a single dependency towards bos.setup.
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page