Thanks to visit codestin.com
Credit goes to github.com

Skip to content

zzjrabbit/caraint

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

The Cara Programming Language

This is a simple and stupid programming language, which is written with pure rust. This is one of its versions.

About

This interpreter can run on any platform which supports filesystem operations and memory allocation and deallocation. It's nearly as fast as the Python Programming Language.

Example

var test_array = [0;5];

for i in (0,5) {
    print(test_array[i]);
    test_array[i] = i+1;
}

insert(test_array, 0, 1);
remove(test_array, 0);

var length = len(test_array);

print(test_array);
print(length);

About

A interpreter version of the cara programming language.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  

Languages