Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upImplement Erlang Standard Library calls in Elixir Standard Library #306
Comments
This was referenced Aug 23, 2017
This was referenced Aug 31, 2017
|
Hi @bryanjos , I would like to contribute to this project, and this seems like a good place to start. But I have some questions first. I was thinking to try doing function system_time() {
return new Date().getTime();
}
function processes() {
child_process.exec('ps aux', (err, stdout, stdin) => {
if (err) throw err;
console.log(stdout);
});
}but how can I go about writing the test for such functions? Since they are relying on JS APIs and Node.js APIs. |
|
Hmm... I think you might want to check all the filename functions off since they are implemented here. |
|
I think this should be rethought a bit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Below is a list of all the known Erlang standard library functions found in Elixir's Standard Library that have not been implemented in some way yet in ElixirScript. Implementations should go here
For anyone looking to implement a function the steps would be to:
Then we can check off those functions is the list below
Functions to Implement