From 7501f08061f18891a86c0255f685bbc4c32df664 Mon Sep 17 00:00:00 2001 From: Louis Pilfold Date: Sat, 11 May 2019 11:42:59 +0100 Subject: [PATCH] Possibly correct README Hello! I found your language through your blog post which linked Gleam (thanks!). I wasn't sure if the README was correct. It says "gradually typed" but then describes type inference rather than gradual typing. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index be3b144..bdc30c1 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Esta is a gradually typed, interpreted language and virtual machine implementati _Interpreted_: `.est` source code is compiled into byte code (simple assembly instructions) and run on the Esta VM. -_Gradually Typed_: The Esta Interpreter can infer variable type (e.g.): +_Inferred_: The Esta Interpreter can infer variable type (e.g.): ```c var a: num = 4; // Explicitly declare a is an int