From cb60d7b459fcee7a95c95228900f8bdda4d7e57c Mon Sep 17 00:00:00 2001 From: Flaviu Tamas Date: Thu, 19 Feb 2015 22:06:49 -0500 Subject: [PATCH] fix awk. wording --- GSoC-2015-Ideas.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/GSoC-2015-Ideas.md b/GSoC-2015-Ideas.md index 5476780..aeed58e 100644 --- a/GSoC-2015-Ideas.md +++ b/GSoC-2015-Ideas.md @@ -43,8 +43,7 @@ The following list of projects are just some ideas that the community and the de A REPL (read-eval-print loop) can be a valuable tool while exploring a language, new libraries and during regular development, as it allows faster feedback. Nim provides a simple REPL (`nim i`) based on its compile-time -virtual machine, but it is not adequate. For example importing C based code -does not work. +virtual machine, but it has drawbacks (no FFI). An alternative approach is the development of a new REPL that actually compiles the entered code to C and then uses the [TinyCC