Set the environment to the same variable name
[fur] / README.md
1 # fur
2
3 Fur is a programming language for the next millenium. In 1000 years, humans will likely still like
4 furry animals, so Fur is named in their honor.
5
6 Example Fur programs are in the `examples/` folder. The main compiler (`main.py`) compiles Fur
7 programs to C. An example of usage:
8
9     ~/fur$ python3 main.py examples/01_hello.fur
10     ~/fur$ gcc examples/01_hello.fur.c 
11     ~/fur$ ./a.out
12     Hello, world~/fur$ 
13
14 Fur is GPL and will only ever target GPL compilers. Fur supports closures, integer math, boolean
15 logic, lists, structures (similar to objects), and strings (implemented as
16 [ropes](https://en.wikipedia.org/wiki/Rope_(data_structure))).  It doesn't yet support
17 exceptions, multithreading, modules, or anything resembling a standard library.  If that sounds
18 like something you want to use in production code, good luck to you.