Skip to content
pannous edited this page Nov 12, 2020 · 6 revisions

Data in Angle is map based.

The fundamental data type in Angle is a map.

Just like how in lisp everything is a list, in angle everything is a map.

Or internally: a node with parent, children and values.

Peter{address="Home 1"}

is internally represented as

Node{
 name="Peter"
 children={
   Node{
     name="address "
     value=Node{
         name="Home 1" 
         type=string
     }  
  }
}

Home

Philosophy

data & code blocks

features

inventions

evaluation

keywords

iteration

tasks

examples

todo : bad ideas and open questions

⚠️ specification and progress are out of sync

Clone this wiki locally