GithubHelp home page GithubHelp logo

mcanthony / streem Goto Github PK

View Code? Open in Web Editor NEW

This project forked from matz/streem

1.0 2.0 0.0 1.08 MB

prototype of stream based programming language

License: MIT License

Makefile 0.88% C 88.72% C++ 0.82% Lex 1.36% Yacc 7.90% Ruby 0.24% Shell 0.08%

streem's Introduction

Streem

Build Status ![Gitter](https://badges.gitter.im/Join Chat.svg)

Streem is a stream based concurrent scripting language. It is based on a programming model similar to the shell, with influences from Ruby, Erlang, and other functional programming languages.

Note: Streem is still in the design stage. It's not working yet. Stay tuned.

Examples

In Streem, a simple cat program looks like this:

stdin | stdout

Streem is a (sort of) DSL for data flows. Above code means building data-flow connection between stdin and stdout. Actual data processing will be done in the event loop invoked after program execution.

For another example, a simple FizzBuzz will look like this:

seq(100) | {x ->
  if x % 15 == 0 {
    "FizzBuzz"
  }
  else if x % 3 == 0 {
    "Fizz"
  }
  else if x % 5 == 0 {
    "Buzz"
  }
  else {
    x
  }
} | stdout

The second part in the pipeline ({x ->...}) is a function object. If a function object is connected in the pipeline, it will be invoked for each element in the stream.

Compiling

Installing dependencies

  • bison
  • flex
  • gcc / clang
  • libgc (libgc-dev on Debian/Ubuntu, bdw-gc on OSX homebrew)

Run make

make

Please note that Streem will not run any scripts yet, but you can check parse files and check syntax.

Contributing

Send a pull request to http://github.com/matz/streem. We consider you have granted non-exclusive right to your contributed code under MIT license. Use http://github.com/matz/streem/issues for discussion.

License

MIT license (© 2015 Yukihiro Matsumoto)

streem's People

Contributors

artintal avatar chancancode avatar dbohdan avatar gitter-badger avatar goom11 avatar halogenandtoast avatar jonathanmarvens avatar kmdsbng avatar marado avatar mattn avatar matz avatar mneilsen avatar nickmccurdy avatar nobu avatar polarker avatar practicalswift avatar proppy avatar shuichiro-makigaki avatar suzukaze avatar yhara avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.