0.0.1 • Published 11 years ago

concentric v0.0.1

Weekly downloads
6
License
-
Repository
-
Last release
11 years ago

Concentric

Improves OOP with interfaces and base classes

Introduction

This library should be used with LiveScript or CoffeeScript.

Example

Here is a simple example written in LiveScript:

require! {
  concentric.Component
}


class IExample
  instance-method: (a, b) ->
  instance-method-miss: ->
  @static-method = (a, b) ->
  @static-method-miss = ->

class Example extends Component
  instance-method: (a, b) ->
  instance-method-miss: ->
  @static-method = (a, b) ->
  @static-method-miss = ->
  @implements IExample #Ensure it implements IExample. If it is not implemented an error is throwed

example = new Example
example.set firstname: \foo lastname: \bar colors: {
  grey: \#333333
  green: \#448800
}
example.get \firstname #foo
example.merge colors: grey: \#555555
example.get \colors #{ grey: \#555555 green: \#448800 }

For more examples check the test folder.