From bde083c55306fc571959a45950e4822ef783cd3f Mon Sep 17 00:00:00 2001 From: Tushar Khan Date: Tue, 15 Dec 2020 21:29:09 -0500 Subject: [PATCH] Renamed crispy module file extension to .crspy --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e5ef1ba..8ac82f2 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Crispy is statically-typed functional programming language with type inference. } ``` -4. Module System - Crispy uses a simple importing mechanism which allows you to easily write modular code. For example, to import the definitions from the `vectors.cpm` module, simply add the following line to the beginning of your program: +4. Module System - Crispy uses a simple importing mechanism which allows you to easily write modular code. For example, to import the definitions from the `vectors.crspy` module, simply add the following line to the beginning of your program: ```python import vectors ``` @@ -48,10 +48,10 @@ You can build the `cripsy` interpreter using the Makefile: - Run `make clean` to remove object files and executables. ### Run -To execute a `.cpm` Crispy program, run the `crispy` interpreter with `/.crispy .cpm`. +To execute a `.crspy` Crispy program, run the `crispy` interpreter with `/.crispy .crspy`. -The `examples` directory contains many example Crispy programs which demonstrate different features of the language. You can execute any of these example programs with `/.crispy examples/.cpm`. +The `examples` directory contains many example Crispy programs which demonstrate different features of the language. You can execute any of these example programs with `/.crispy examples/.crspy`. -The `tests` directory contains a suite of Crispy programs that are used to verify the correctness of interpreter. You can execute all of the tests with `/.crispy tests`. When applied to a directory, the interpreter finds and executes the `/main.cpm` driver program. +The `tests` directory contains a suite of Crispy programs that are used to verify the correctness of interpreter. You can execute all of the tests with `/.crispy tests`. When applied to a directory, the interpreter finds and executes the `/main.crspy` driver program.