From 4384fa5de2d49e0667a5209959b9f39a96bdd95a Mon Sep 17 00:00:00 2001 From: Brian Amadio Date: Fri, 30 Jul 2021 16:15:38 -0700 Subject: [PATCH] Update README.md --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index 681d491..5accbca 100644 --- a/README.md +++ b/README.md @@ -10,12 +10,10 @@ An excellent introduction can be found both in the original research, [Designing # So what is this ? This is an interpreter that provides the basic functionality for running [PlanOut](http://github.com/facebook/planout) interpreter code, allowing for integrating experiments into GoLang applications. -This is not a full implementation of a complete [PlanOut](http://github.com/facebook/planout) stack, as such it lacks the compiler needed to turn [PlanOut](http://github.com/facebook/planout) DSL into the interpreter code, as well as the general test management tooling needed. +There is also a compiler to turn PlanOut DSL into the code understood by the compiler. Much of the additional tooling for [PlanOut](http://github.com/facebook/planout) can be found the in original project. -This code will however run [PlanOut](http://github.com/facebook/planout) programs in an idiomatic Golang fashion. - # How to run a basic experiment ? Here's an example program that consumes compiled [PlanOut](http://github.com/facebook/planout) code and executes the associated experiment using the Golang interpreter.