Giter Site home page Giter Site logo

coop's Introduction

Coop

Dirty dynamic runtime and Object-Oriented Programming for LLVM C

This is my first project using regular C, so it's probably really bad.

Uses blocks and structures to create a dynamic runtime, including

  • Classes
  • Class Properties
  • Dynamic Method Calling
  • Method Swizzling

Basic Usage

Create A Class:

		Classname inheritsFrom(Superclass or NULL);

Add class method:

		classFunc(class, method name, {
			(implementation)
			self is the class on which function was called
			arguments are void pointers in array called "args"
		});

Add an instance method:

		instanceFunc(class, method name, {
			(implementation)
			self is the instance on which the function was called
			arguments are void pointers in array called "args"
		});

Call a method without arguments (cast to return type):

		$(class or instance, method name);

Call a method with arguments:

		$$(class or instance, method name, # of args, array of args)

Working

  • Class creation
  • Function creation
  • Dynamic Function Calling
  • Function Arguments
  • Class Instances

To Do

  • Properties
  • Proper Memory Management
  • Everything Else

Compiling the Sample

You literally cd to the directory and type clang Coop.c -o Coop

==

####You really shouldn't use this.

Seriously. It's awful.

coop's People

Contributors

bd452 avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.