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 upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
Implement Erlang Standard Library calls in Elixir Standard Library #306
Comments
|
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 |


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