Condor
Condor copied to clipboard
A fast, simple, and intelligent new programming language
When running the following code: ```go import "println" from "console" int ten1 = 10; float tenf = 10.1; double tend = 10.1; long tenl = 10.1; println(ten1 + 10); println(tenf...
When running ```./build/condor```, running in shell mode, the usage of the left, up, down, and right arrow does not work. The symbol ```[^A``` or something like that appear.
The GC is not working properly when there is recursion. [See the Code](https://github.com/CondorLang/Condor/blob/master/src/condor/execute/execute.cc) ## Example Code: ``` go import "println" from "console" func fib(int n){ println("-> " + n); if...
When running the following code: ```go object Fruit{ private string name; func Fruit(string name){ this.name = name; } func getName() return this.name; } Fruit apple = new Fruit("Apple"); ``` The...
The following code does not increase memory: ```go for (int i = 0; i < 100; i++) var a = 10; ``` The memory is under control, meaning, the garbage...
When we are calling an import or an include inside of a file, the requested file is parsed and compiled each time it's called. See https://github.com/CondorLang/Condor/blob/master/src/condor/types/script/script.cc#L243 # TODO - [...
Hi, I saw your post on Quora: https://www.quora.com/How-can-I-find-people-to-contribute-to-my-open-source-Github-project/draft I'm the one who said: " Post in Open Source (and eventually on CompSci/Soft Eng) groups/communities to get people to eventually contribute....