#ifndef _LLLIST_H
#define _LLLIST_H

struct Node {
    int data;
    Node * next;
};

class LList {
 private:
    Node * head;

 public: 
    LList() { head = NULL; }
    /* inserts at front of list*/
    void insert(int i);

};

#endif

