Contributors Forks Stargazers Issues MIT License


mario-isn

mario bros in c
Explore the docs »

Report Bug · Request Feature

Table of Contents
  1. About The Project
  2. Getting Started
  3. Prerequisites
  4. Usage

About The Project

[EN 🇬🇧] mario-isn is a Scientific Terminal project in ISN (Computing and digital sciences). The objective being to recreate a mario bros in c. The project has been rewarded by the second price of Digicosme Labex : https://digicosme.lri.fr/tiki-read_article.php?articleId=267

[FR 🇫🇷] mario-isn est un projet de Terminal Scientifique en ISN (Informatique et sciences du numérique). L'objectif etant de recréer un mario bros en c. Le projet a été récompencé par le second prix du Labex Digicosme : https://digicosme.lri.fr/tiki-read_article.php?articleId=267

(back to top)

Getting Started

  1. Clone the project
  git clone https://github.com/aymerickmichelet/mario-isn.git
  1. Go to the project directory
  cd mario-isn
  1. Compile the program
  ./compiler.sh

Prerequisites

macOS

Avec Homebrew

  1. Install Homebrew :
    /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
  2. Install GCC :
    brew install gcc

Avec Xcode

  1. Install Xcode from l'App Store.
  2. Install command line tools :
xcode-select --install

Windows

Avec MinGW

  1. Download MinGW from mingw.org.
  2. Follow installation instruction.
  3. Add C:\MinGW\bin to the environment variable PATH.

Avec MSYS2

  1. Download MSYS2 from msys2.org.
  2. Follow installation instruction.
  3. Open the console MSYS2 and install GCC :
pacman -Syu
pacman -S mingw-w64-x86_64-gcc
  1. Add C:\msys64\mingw64\bin to the environment variable PATH.

Linux

Debian/Ubuntu

  1. Open Terminal and install development tools :
sudo apt update
sudo apt install build-essential

Fedora

  1. Open Terminal and install development tools :
sudo dnf groupinstall "Development Tools"

Arch Linux

  1. Open Terminal and install development tools :
sudo pacman -S base-devel

Usage

  1. Compile the program (getting started)

  2. Run the program

  ./mario-isn <text>

(back to top)

Collaborator