Skip to content

GiladLeef/CP

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

47 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

C+ Programming Language

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.

Features

  • Object-oriented programming with classes and methods
  • Basic data types: int, float, char, and string
  • Control structures: if, else, while, for, and do-while
  • Easy function and method calls

Example program

// 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;
}

Contributing

Contributions are welcome! Fork the repository and submit a pull request.

About

A new programming language based on C

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages