C+ is a modern programming language that blends the simplicity of C with the features of C++, offering an easy-to-use syntax and support for object-oriented programming.
- Object-oriented programming with classes and methods
- Basic data types:
int
,float
,char
, andstring
- Control structures:
if
,else
,while
,for
, anddo-while
- Easy function and method calls
// import code from other files using:
// import file.cp
class Person {
string name;
int age;
int whatIsMyAge() {
return self.age;
}
}
int main() {
float num = 3.14;
if (num < 5) {
print("if branch");
} else {
print("else branch");
}
while (num < 10) {
print(num);
num = num + 1;
}
for (int i = 0; i < 3; i = i + 1) {
print(i);
}
do {
print("do-while");
num = num - 1;
} while (num > 7);
print(num);
Person p;
p.name = "John";
p.age = 100;
print(p.name);
print(p.whatIsMyAge());
return 0;
}
Contributions are welcome! Fork the repository and submit a pull request.