{"id":28188853,"url":"https://github.com/toro-nicolas/pseudo-lang","last_synced_at":"2026-05-03T05:39:26.940Z","repository":{"id":237684360,"uuid":"795038953","full_name":"toro-nicolas/pseudo-lang","owner":"toro-nicolas","description":"A quick and easy programming language for beginners, with his compiler.","archived":false,"fork":false,"pushed_at":"2024-05-15T11:56:39.000Z","size":2012,"stargazers_count":0,"open_issues_count":8,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-05-16T16:48:45.691Z","etag":null,"topics":["c","compiler","go","langage","pseudo-code","pseudo-lang"],"latest_commit_sha":null,"homepage":"https://toro-nicolas.github.io/pseudo-lang/","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/toro-nicolas.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-05-02T13:14:54.000Z","updated_at":"2024-05-15T11:56:43.000Z","dependencies_parsed_at":"2024-05-14T13:53:15.411Z","dependency_job_id":null,"html_url":"https://github.com/toro-nicolas/pseudo-lang","commit_stats":null,"previous_names":["toro-nicolas/pseudo-lang"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toro-nicolas%2Fpseudo-lang","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toro-nicolas%2Fpseudo-lang/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toro-nicolas%2Fpseudo-lang/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toro-nicolas%2Fpseudo-lang/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/toro-nicolas","download_url":"https://codeload.github.com/toro-nicolas/pseudo-lang/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254501542,"owners_count":22081532,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["c","compiler","go","langage","pseudo-code","pseudo-lang"],"created_at":"2025-05-16T09:12:23.866Z","updated_at":"2026-05-03T05:39:21.917Z","avatar_url":"https://github.com/toro-nicolas.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ⌨️️ Pseudo-Lang 🗣️\n\n## Table of contents 📑\n- [Description](https://github.com/toro-nicolas/pseudo-lang/blob/main/README.md#description-)\n- [Usage](https://github.com/toro-nicolas/pseudo-lang/blob/main/README.md#usage-%EF%B8%8F)\n- [Compilation](https://github.com/toro-nicolas/pseudo-lang/blob/main/README.md#compilation-%EF%B8%8F)\n- [Documentation](https://github.com/toro-nicolas/pseudo-lang/blob/main/README.md#documentation-)\n- [Credits](https://github.com/toro-nicolas/pseudo-lang/blob/main/README.md#credits-)\n\n\n## Description 📝\n**Pseudo-Lang** is a programming language. Its aim is to **write fast programs easily**, **accessible to all** types of audience. It is based on the principle of the \"[**pseudo-code**](https://en.wikipedia.org/wiki/Pseudocode)\", writing code in an almost natural language. Here, our language is based on a kind of **pseudo-code in French** (if required, we can add other languages).  \nLike every programming language, this one includes a **compiler**: **PLC (Pseudo-Lang Compiler)**. The compiler will convert the **Pseudo-Lang project** into a **C project** that can be accessed directly by the client.  \n\nThis github repository contains the **PLC source code** and all the **information linked to Pseudo-Lang**.  \nFor more information on the project, please visit the [github project](https://github.com/users/toro-nicolas/projects/2) or the [project website](https://toro-nicolas.github.io/pseudo-lang/).\n\n\n## Usage ⚔️\nHere's an example of a **PSL** (Pseudo-Lang) file :\n```addition.psl```\n```psl\nafficher(\"Hello, World!\\n\")\n\nfonction: additionner(entier a, entier b) -\u003e entier\n    afficher(a, \" + \", b, \" = \")\n    retourner a + b\n    \na \u003c- 5\nb \u003c- 3\nafficher(additionner(a, b), \"\\n\")\n```\n\nYou can run plc like this :\n```sh\n./plc addition.psl -o addition -r\n```\n\nFor more information, please see the help section.\n```sh\nUSAGE\n        plc [OPTIONS] [file1.pl file2.pl ...]\nDESCRIPTION\n        The official Pseudo-Lang Compiler\nOPTIONS\n        -c              Only convert Pseudo-Lang to C, no compilation\n        -d [directory]  Specify the code output directory\n        -o [name]       Specify the name of the executable (default is main.out)\n        -r              Run the program after compilation*\n        -w              Disable warning display\n```\n\n\n## Compilation 🛠️\nYou can compile the **PLC project** with this command :\n```sh\nmake\n```\n\nIf you want clean the **PLC project**, you can run this command :\n```sh\nmake clean\n```\n\nYou can clean and compile the **PLC project** with ```make re``` .\n\n\n## Documentation 📚\nThe documentation to the **Pseudo-Lang** is accessible [here](https://toro-nicolas.github.io/pseudo-lang/pseudo-lang/).\n\nTo open the **PLC documentation**, run the command :\n```sh\nmake doc\n```\n\n\n## Credits 👤\n\nThis project, **Pseudo-Lang** and **its compiler**, was totally **imagined and built** by [**Nicolas TORO**](https://github.com/toro-nicolas) as part of a **HUB project** for his first year in [**EPITECH's Grande Ecole program**](https://www.epitech.eu/programme-grande-ecole-informatique/).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftoro-nicolas%2Fpseudo-lang","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftoro-nicolas%2Fpseudo-lang","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftoro-nicolas%2Fpseudo-lang/lists"}