From 1c731a2b424e4ba6a6b5d8570c4a34807e730e77 Mon Sep 17 00:00:00 2001 From: Fionn Langhans Date: Sun, 23 Jun 2024 15:38:47 +0200 Subject: [PATCH] Changed README --- README.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 5760a94..3cce4b4 100644 --- a/README.md +++ b/README.md @@ -4,10 +4,10 @@ This interpreter and programming language are subject to huge change. ``` -pgcl - *pretty good calculator language* - is a language for basic -calculations. Designed for (*my*) rapid success doing calculations. It is also -an educational tool, which tries to visualize how functional programming -languages *could* work: +pgcl - *pretty good calculator language* - is a language for basic calculations +(a Python replacement). Designed for (*my*) rapid success doing calculations. +It is also an educational tool, which tries to visualize how functional +programming languages *could* work: ``` > add x y = x + y @@ -29,8 +29,6 @@ match (1, 2) then (x, y) => (x + y) > ``` -It is a functional programming language. - Fundamentally this programming language reduces expressions. Expressions are reduced as long as they cannot be reduced any longer. This means that the ``5 + 2`` reduced is ``7``, but also that ``3 + x`` is still ``3 + x``.