eople icon indicating copy to clipboard operation
eople copied to clipboard

Actor-model based concurrency in a reactive programming language.

Results 8 eople issues
Sort by recently updated
recently updated
newest added

Implement ast walker to use [jitbox](https://github.com/FBMachine/jitbox) to generate native code.

enhancement

Allow monitoring of processes for failure. ``` pid = SomeProcess() error_message = pid->on_error() when error_message: print("Process exited with error: " + to_string(error_message)) end # normal exit case exit_message = pid->on_exit()...

language feature

Implement first pass minimal file io. e.g. ``` in_file = open('file.txt', 'r') out_file = open('copy.txt', 'w') for line in in_file: out_file.write(line) end ``` Tasks: - [ ] Add wrapper around...

std library

Implement Erlang/Prolog/Elixir style pattern matching on complex types, e.g. ``` x = [1,2,3] [a,b,c] = x print(a) # 1 print(c) # 3 obj = {'name': 'Emmett', 'age': 1} {'age': his_age}...

language feature

Allow e.g. ``` def outer(i): captured = 0 def inner(j): print(i + j + captured) captured += 1 end return inner end fun = outer(2) fun(5) # 7 fun(5) #...

language feature

* Break into a series of separate tutorials, linked from main README * "Hello Eople" tutorial should focus on what makes eople unique (e.g. when/whenever keywords) * "Overview" tutorial should...

enhancement

Change: ``` x = array() ``` to: ``` x = array() # or: x = [] ``` Should be able to use unification for type inference like everything else, and...

enhancement

Functions should be treated as first class objects. e.g. ``` def sqr(x): return x * x end def test(function): print(function(5)) # 25 end def main(): print(sqr(5)) # 25 fun =...

language feature