Coder Social home page Coder Social logo

oevyli's Introduction

Oevyli Language
---------------

Oevyli is a functional scripting language. Philosophy is to create 
something as simple dumb as possible. It's something like Haskell.
By following the book Crafting Interpreters by Robert Nystrom.

Haskell is not dumb!

How to use it
-------------
# On linux close the repo, execute build.sh (./build.sh). Go to bin/
directory and 
  * For REPL:  ./oevyli
  * To run your .oli file: ./oevyli <your .oli file>

Language
--------
# Create a function that multiply a number by itself and print it

print_simple_value.oli -------------------------------------------

var x = x * x
print var 3   ; should output 9. ';' is comments by the way.  
------------------------------------------------------------------

# Control flow

whats_my_score.oli -----------------------------------------------
; you can read this as 'what's my score Oli'

my_socre x
  | x > 75    = "A"
  | x > 65    = "B"
  | x > 55    = "C"
  | x > 35    = "D"
  | otherwise = "F"

print my_score 63 ; should output C
------------------------------------------------------------------

todo
----
* First I need the compiler that's fast and efficient.
* Create a debugger.

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.