Originally Posted by
Zeus
yeah, when I looked at it I thought about downloading it as well. I'm also looking for a new Compiler.
llvm + clang is pretty nice if you're doing low level stuff like C++/C
Update: Made a NodeJS module to make fetching toribash user info a bit easier
https://www.npmjs.com/package/toriapi
js code:
const Toribash = require("toriapi");
const Api = new Toribash();
Api.getUser("elite").then(user => {
console.log(user.clan.tag);
});
Last edited by hanna; Mar 16, 2019 at 03:34 AM.