From 1521636ff167441a568ff39f07e1c1fde7085151 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Thu, 18 Oct 2018 18:54:43 -0500 Subject: [PATCH] Add a couple fixes for the latest til --- README.md | 2 +- reason/compile-reason-to-native-with-dune.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 46a7ecb..8e25c1f 100644 --- a/README.md +++ b/README.md @@ -510,8 +510,8 @@ _711 TILs and counting..._ ### ReasonML - [Break Out Of A While Loop](reason/break-out-of-a-while-loop.md) -- [Create A Stream From An Array](reason/create-a-stream-from-an-array.md) - [Compile Reason To Native With Dune](reason/compile-reason-to-native-with-dune.md) +- [Create A Stream From An Array](reason/create-a-stream-from-an-array.md) - [Data Structures With Self-Referential Types](reason/data-structures-with-self-referential-types.md) - [Defining Variants With Constructor Arguments](reason/defining-variants-with-constructor-arguments.md) - [Dynamically Create A Printf String Format](reason/dynamically-create-a-printf-string-format.md) diff --git a/reason/compile-reason-to-native-with-dune.md b/reason/compile-reason-to-native-with-dune.md index 1efca1f..07d1269 100644 --- a/reason/compile-reason-to-native-with-dune.md +++ b/reason/compile-reason-to-native-with-dune.md @@ -15,7 +15,7 @@ print_endline("Hello, Reason!") We can then create the following Dune build file. ```lisp -/* dune */ +;; dune (executable (name hello_reason)) ```