Skip to content

Instantly share code, notes, and snippets.

@anton-gorbikov
Last active September 23, 2020 20:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anton-gorbikov/5ae97750f135c8f46257fe7ea3400e5d to your computer and use it in GitHub Desktop.
Save anton-gorbikov/5ae97750f135c8f46257fe7ea3400e5d to your computer and use it in GitHub Desktop.
getting-started-fable-nodejs-main-fs
module Main
open Express
let application = Express()
application.get "/users" (fun _req res -> res.send "Users")
application.listen 3000 (fun () -> printf "Hello World")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment