The scope structure is similar to class structures. All the functions defined in scope form subfunctions of a scope. In this way you can clustering by writing functions in the main scope.
Scope definition:
scope example { def hello = fn(x){ return "Hello "+x }; def subone = fn(x){ return x+1 }; }
Scope call:
def hello = example::hello("Oytun") def number = example::subone(1) show(hello) show(number)
Scope output:
Hello Oytun 2
Great now you are ready to write a simple web socket.