shithub: orca

Download patch

ref: 7f393221a58552c80e7f08f6cc81f0241b1b4b49
parent: 423057246e2aabcd4641bfeb9bfdd8dc03ecd488
author: cancel <cancel@cancel.fm>
date: Sat Jan 4 17:28:53 EST 2020

Cleanup

--- a/README.md
+++ b/README.md
@@ -6,16 +6,8 @@
 
 **C Port** for the [ORCΛ](https://github.com/hundredrabbits/Orca) programming environment, with a commandline interpreter.
 
-## Prerequisites
+## Quick Start for Debian/Raspbian (Raspberry Pi)
 
-Core library: A C99 compiler (no VLAs required), plus enough libc for `malloc`, `realloc`, `free`, `memcpy`, `memset`, and `memmove`. (Also, `#pragma once` must be supported.)
-
-Command-line interpreter: The above, plus POSIX, and enough libc for the common string operations (`strlen`, `strcmp`, etc.)
-
-Interactive terminal UI: The above, plus ncurses (or compatible curses library), and floating point support (for timing.) Optionally, PortMIDI can be used to enable direct MIDI output.
-
-### Quick Start for Debian/Raspbian (Raspberry Pi)
-
 ```sh
 sudo apt-get install git libncurses5-dev libncursesw5-dev libportmidi-dev
 git clone https://github.com/hundredrabbits/Orca-c.git
@@ -24,6 +16,14 @@
 build/orca --portmidi-list-devices     # Select MIDI device
 build/orca --portmidi-output-device 2  # Start livecoding
 ```
+
+## Prerequisites
+
+Core library: A C99 compiler (no VLAs required), plus enough libc for `malloc`, `realloc`, `free`, `memcpy`, `memset`, and `memmove`. (Also, `#pragma once` must be supported.)
+
+Command-line interpreter: The above, plus POSIX, and enough libc for the common string operations (`strlen`, `strcmp`, etc.)
+
+Livecoding terminal UI: The above, plus ncurses (or compatible curses library), and floating point support (for timing.) Optionally, PortMIDI can be used to enable direct MIDI output.
 
 ## Build