Org Babel for F#
Babel is Org’s ability to execute source code within Org documents.
The goal of this project is to extend the default Org Babel capabilities by supporting the F# programming language.
Simple Example
sprintf "Hello %s" str
Hello World!
See Source
Installation
straight.el + use-package
If you are a user of both straight.el and use-package you can simply add the following code to your setup, after the Org package configuration:
(use-package ob-fsharp
:straight t
:config
(add-to-list 'org-babel-load-languages '(fsharp . t)))