Open
Conversation
Installation instructions should be added directly to the readme to reduce the frustration that new users may face.
cwesson
requested changes
Nov 9, 2025
| ## Installation | ||
| These instructions have been tested on Ubuntu 20. | ||
|
|
||
| 1. Clone with `git clone --recursive https://github.com/cwesson/funge-plus-plus.git` |
Owner
There was a problem hiding this comment.
There is one submodule as well, probably should add git submodule update --init
| These instructions have been tested on Ubuntu 20. | ||
|
|
||
| 1. Clone with `git clone --recursive https://github.com/cwesson/funge-plus-plus.git` | ||
| 2. Ensure make, cmake and g++ are installed. On ubuntu this can be done with `sudo apt install make cmake g++`. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request adds explicit installation instructions to the README to improve the onboarding experience for new users.
While this project is a great and comprehensive Funge interpreter, the installation process was not straightforward for newcomers. Previously, users needed to inspect the source code and do trial and error to get the tool running. The new instructions make setup simpler.
The commands have been tested on Ubuntu 20.04.