Skip to content

Commit

Permalink
[new release] gobba (0.4.1)
Browse files Browse the repository at this point in the history
CHANGES:

- Renamed project from minicaml to `gobba`!
- Syntax is now more haskel-ly: use `,` to separate list and dictionary values,
  use `>>` to sequence operations (bind) and use `;` to end statements.
- Improved purity inference algorithm with correct module inference
- Some minor improvements
  • Loading branch information
0x0f0f0f committed Jan 17, 2020
1 parent b18d0fd commit cb87a18
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions packages/gobba/gobba.0.4.1/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
opam-version: "2.0"
maintainer: "sudo-woodo3@protonmail.com"
authors: ["Alessandro Cheli"]
homepage: "https://github.com/0x0f0f0f/gobba"
bug-reports: "https://github.com/0x0f0f0f/gobba/issues"
dev-repo: "git+https://github.com/0x0f0f0f/gobba.git"
license: "MIT"
synopsis: "A simple, didactical, purely functional programming language"
description: "A simple, didactical, purely functional programming language written for the programming 2 course at the University of Pisa, extended with a simple parser made with Menhir and ocamllex"
doc: "https://0x0f0f0f.github.io/gobba"

build: [
["dune" "build" "-p" name "-j" jobs]
[make "test" "-j" jobs] {with-test}
]
depends: [
"dune" {>= "2.0"}
"ocaml" {>= "4.05.0"}
"ANSITerminal"
"ocamline" {>= "1.0"}
"menhir"
"ppx_deriving"
"cmdliner"
"alcotest" {with-test & >= "0.8.5"}
"bisect_ppx" {with-test >= "1.4.1"}
]
url {
src:
"https://github.com/0x0f0f0f/gobba/releases/download/0.4.1/gobba-0.4.1.tbz"
checksum: [
"sha256=19216f975b72f7c55157567aeb5fbe531e7e3bc17f05ab5a30333ac0fff1442a"
"sha512=7fa94e756b4ecba45e85a390a155f7d8b30b2562a6095f6464f9fdd72b8d97c99d2586e194f55e11418d6ccdefc6465ffb8587a87e40ea02cb44ba13b6678c6d"
]
}

0 comments on commit cb87a18

Please sign in to comment.