Name: Anonymous 2012-10-10 5:05
http://lljs.org/
Soon it will be JavaScript ALL THE WAY DOWN TO HARDWARE! Enjoy the brave new world.
Soon it will be JavaScript ALL THE WAY DOWN TO HARDWARE! Enjoy the brave new world.
struct Node {
Node *next;
int value;
};
let Node *head = new Node, *tail = head;
function Node *add(int value) {
let Node *next = new Node;
next->value = value;
tail->next = next;
tail = next;
return next;
}