haskeme: Compiler from I- to S-Expressions for the Scheme Programming Language

This is a package candidate release! Here you can preview how this package release will appear once published to the main package index (which can be accomplished via the 'maintain' link below). Please note that once a package has been published to the main package index it cannot be undone! Please consult the package uploading documentation for more information.

[maintain] [Publish]

This compiler translates Scheme source code written with I-Expressions (indented expressions) into S-Expressions (symbolic expressions).


[Skip to Readme]

Properties

Versions 0.1.0.0, 0.1.0.0, 0.1.0.1, 0.1.0.2, 0.1.0.3, 0.1.0.4
Change log CHANGELOG.md
Dependencies base (>=4.12 && <4.13), haskeme [details]
License BSD-3-Clause
Author Felix Springer
Maintainer felixspringer149@gmail.com
Category Language
Home page https://github.com/jumper149/haskeme
Uploaded by jumper149 at 2019-06-30T17:03:27Z

Modules

[Index] [Quick Jump]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees


Readme for haskeme-0.1.0.0

[back to package description]

haskeme

This compiler translates Scheme source code written with I-Expressions (indented expressions) into S-Expressions (symbolic expressions).

Usage

Haskeme can read and write files:

haskeme --input "program.hss" --output "program.ss"

Haskeme can also use StdIn and StdOut:

cat "program.hss" | haskeme > "program.ss"

Options