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: 9 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 (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-09-12T14:34:54.000Z (10 months ago)
- Last Synced: 2025-09-12T16:55:55.814Z (10 months ago)
- Topics: esolang, esoteric-language, esoteric-programming-language, github-action, github-actions, malbolge, malbolge-interpreter
- Language: C
- Homepage:
- Size: 47.9 KB
- Stars: 1
- 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
[](https://stand-with-ukraine.pp.ua)




This action installs [malbolge](https://en.wikipedia.org/wiki/Malbolge) interpreter.
## Supported OS
| OS | |
|---------|--------------------|
| Windows | :white_check_mark: |
| Linux | :white_check_mark: |
| macOS | :x: |
## Prerequisites
The following tools have to be installed for successful work of this GitHub action:
[gcc](https://gcc.gnu.org).
## Inputs
```yaml
- uses: fabasoad/setup-malbolge-action@v0
with:
# (Optional) If "false" skips installation if malbolge is already installed.
# If "true" installs malbolge in any case. Defaults to "false".
force: "false"
```
## Outputs
| Name | Description | Example |
|-----------|---------------------------------------|---------|
| installed | Whether malbolge was installed or not | `true` |
## 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: Test
on: push
jobs:
example:
name: malbolge
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: fabasoad/setup-malbolge-action@v0
- name: Run script
run: malbolge hello-world.mal
```
### Result
```text
Run malbolge hello-world.mal
Hello, world.
```
## Contributions
