Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fabasoad/setup-malbolge-action
This GitHub action installs malbolge interpreter
https://github.com/fabasoad/setup-malbolge-action
esolang esoteric-language esoteric-programming-language github-action github-actions malbolge malbolge-interpreter
Last synced: about 2 months ago
JSON representation
This GitHub action installs malbolge interpreter
- Host: GitHub
- URL: https://github.com/fabasoad/setup-malbolge-action
- Owner: fabasoad
- License: mit
- Created: 2022-11-28T14:52:35.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-02T14:10:31.000Z (5 months ago)
- Last Synced: 2024-10-15T17:23:44.326Z (2 months ago)
- Topics: esolang, esoteric-language, esoteric-programming-language, github-action, github-actions, malbolge, malbolge-interpreter
- Language: C
- Homepage:
- Size: 35.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Setup malbolge action
[![Stand With Ukraine](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/badges/StandWithUkraine.svg)](https://stand-with-ukraine.pp.ua)
![Release](https://img.shields.io/github/v/release/fabasoad/setup-malbolge-action?include_prereleases)
![functional-tests](https://github.com/fabasoad/setup-malbolge-action/actions/workflows/functional-tests.yml/badge.svg)
![security](https://github.com/fabasoad/setup-malbolge-action/actions/workflows/security.yml/badge.svg)
![linting](https://github.com/fabasoad/setup-malbolge-action/actions/workflows/linting.yml/badge.svg)This action installs [malbolge](https://en.wikipedia.org/wiki/Malbolge) interpreter.
## Prerequisites
The following tools have to be installed for successful work of this GitHub action:
[gcc](https://gcc.gnu.org).> `Windows` and `Linux` are the only supported OS at this moment
## Example usage
### Input
This program should print "Hello, world":
```text
(=<`#9]~6ZY327Uv4-QsqpMn&+Ij"'E%e{Ab~w=_:]Kw%o44Uqp0/Q?xNvL:`H%c#DD2^WV>gY;dts76qKJImZkj
```### Workflow configuration
```yaml
name: Teston: push
jobs:
example:
name: malbolge
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- uses: fabasoad/setup-malbolge-action@main
- name: Run script
run: malbolge hello-world.mal
shell: sh
```### Result
```text
Run malbolge hello-world.mal
Hello, world.
```