suryasingh / Condor

A fast, simple, and intelligent new programming language

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Condor Build Status

Condor is intended to be another simple and intuitive programming language. The syntax is familiar by design, but allows for the combining of a few concepts.

Documentation

See Wiki for documentation.

Contributing:

See Contributing page in the wiki See Developers for building instructions.

Examples

Hello World

import "console"
println("Hello World");

Object Oriented

import "console"

object Fruit{
	private string _name;
	func Fruit(string name) this._name = name;
	func getName() return this._name;
	func toString() {
		return "The name of this fruit is: " + this._name;
	}
}

var apple = new Fruit("Apple");
Fruit banana = new Fruit("Banana");
println("First fruit: " + apple.getName() + ", Second fruit: " + banana.getName());

Read File

import "fs"
string contents = fs.readFile("readme.md");

Todo:

  • node.h 28 - Create a Expand() function which expands the node and the tree
  • execute.cc 121 - Figure out how to implement recursion
  • execute.cc 220 - Set row and col for tracking
  • execute.cc 469 - Implement null, undefined, and other types
  • execute.cc 500 - Implement bitwise
  • parser.cc 914 - Disallow for allow-native on a non internal file
  • scanner.cc 466 - Include Octal, Hex, UTF-8, UTF-16, see https://msdn.microsoft.com/en-us/library/6aw8xdf2.aspx
  • internal.cc 140 - Throw Error
  • internal.cc 152 - Throw Error
  • internal.cc 164 - Throw Error
  • internal.cc 298 - Move to a macro
  • semantics.cc 299 - Verify this is ok and always true
  • semantics.cc 673 - Is this true always?
  • semantics.cc 715 - Compare the base type with the assignment type. Throw an error if they are not the same if hard typed.
  • path.cc 24 - Set Locale - http://askubuntu.com/questions/236924/matlab-not-working
  • path.cc 78 - Throw Error

About

A fast, simple, and intelligent new programming language

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:C++ 95.3%Language:HTML 2.8%Language:Makefile 1.2%Language:PHP 0.5%Language:CSS 0.2%Language:ApacheConf 0.0%