Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

Low-Level JavaScript

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.

Name: Anonymous 2012-10-10 13:49


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;
}


FORCED TYPEDEF OF STRUCTS

Seppals-quality

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List