Code Monkey home page Code Monkey logo

cacco's Introduction

cacco

cacco
Important
Cacco is still in the design stage. It’s not working yet.

Introduction

Comment

;; This is inline comment (to the end of the line).

(; (1)
  This is block comment.
  block comment is keeping until the terminator -> ;) ;; (2)

(;
  (; These block comments can be nested. ;)
;)
  1. (; is the start of block comment

  2. ;) is the end of block comment

Literals

0     ;; Fuzzy Numeric.  (default: Natural)
-1 +1 ;; Fuzzy Integer.  (default: Integer)
0.0   ;; Fuzyy Decimal.  (default: Decimal)
1/2   ;; Rational.
'a'   ;; Charactor.      (same as Uint32)
""    ;; Fuzzy Text.     (default: String_UTF8)
:key  ;; Keyword.
[]    ;; Fuzzy Sequence. (default: List)
{}    ;; Key-Value Map.
Fuzzy Types Include Types

Fuzzy_Numeric

Uint8, Uint16, Uint32, Uint64, Natural, and Fuzzy_Integer

Fuzzy_Integer

Int8, Int16, Int32, Int64, Integer, and Fuzzy_Decimal

Fuzzy_Decimal

Float16, Float32, Float64, Flonum

Fuzzy_Text

Bytes, String_UTF8, String_UTF16, String_UTF32

Fuzzy_Sequence

List, Vector, Array, Sequence

Declaration and Reassign

;; Declare procedure or constant value or variable value.
(dec x Integer)

;; Declare a constant value once.
(val x 1000)

;; Declare a mutable variable value.
(var y 0)

;; Strictly typing with literal.
(val z (as 0 Uint8))
(var w (as "something" Bytes))

;; Reassign
(set! y 1000)    ;; OK
(set! y "hello") ;; Can't. `y` has been declered as Number type.
(set! x 10)      ;; Can't. `x` has been declered as immutable.

Calling procedure

;; Simply calling a procedure.
(foo a b c)

;; Calling closure.
((=> (a) (* a a)) 10) ;; returns 100

Define procedure

;; Declare a procedure
(dec cubic (-> Number Number)) ;;(1)

;; Define the procedure
(def (cubic x) (* x x x))
  1. (→ T1 T2 …​ Tn) is Function type recieve T1, T2 …​ then return value as Tn type.

Development

Prerequisites

  • Haskell Stack

Build and Testing

Simply building libraries and application

stack build

Clean

stack clean

Run Tests

# simply run test-suites
stack test

# run test-suites and generate coverage-report
stack test --coverage

# open coverage-report in your browser
open $(stack path --local-hpc-root)/index.html

Check Haddock

stack haddock

open $(stack path --local-doc-root)/index.html

cacco's People

Contributors

voqn avatar

Watchers

 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.