Skip to content

golang package | interpret all estoric programming languages (bruuuuhhhhhh)

Notifications You must be signed in to change notification settings

skantay/brainfuck

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Go Eso Compiler

The Go Eso Compiler is a package that provides functionality to compile programs written in Eso programming languages.

Getting started

To use this package, you need to have Go installed.

Go get the package:

go get github.com/skantay/brainfuck

Example

Here's a simple example demonstrating how to use the package:

package main

import (
	"fmt"
	"log"
	"os"
	"github.com/skantay/go-eso-compiler"
)

func main() {
	file, err := os.Open("program.bf")
	if err != nil {
		log.Fatal(err)
	}
	defer file.Close()

	output, err := brainfuck.Brainfuck(file)
	if err != nil {
		log.Fatal(err)
	}

	fmt.Println("Compiled output:", output)
}

Supported Languages

Contributing

Contributions are welcome! Feel free to open issues or submit pull requests.

About

golang package | interpret all estoric programming languages (bruuuuhhhhhh)

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages