Clarify use of the .exe extension

.exe for executables is usually a windows-only convention; this threw me
for a moment and it seems worth calling out that this isn't platform
dependent.
This commit is contained in:
Ian Denhardt 2017-10-24 21:37:37 -04:00
parent 27cbf1de38
commit b5ba49d9b4
1 changed files with 3 additions and 1 deletions

View File

@ -31,7 +31,9 @@ And build it with:
jbuilder build hello_world.exe
The executable will be built as ``_build/default/hello_world.exe``
The executable will be built as ``_build/default/hello_world.exe``. Note that
native code executables will have the ``.exe`` extension on all platforms
(including non-Windows systems).
Building a hello world program using Lwt
========================================