Coopleteer

Steps

 

Implementation Steps

  1. Implement Cooperscript 0.1, console-based
    • Token parsing and building program tree has already been implemented
  2. Finish Cooperscript 1.0, console-based
  3. Make Cooperscript Android-based
  4. Begin code editor development
  5. Write Coopertags design specs
  6. Recruit GitHub open source coders/testers
  7. Implement monospace mode
  8. Implement rich-text mode
  9. Integrate Cooperscript with Coopertags (monospace/rich-text modes)
  10. Design core Coopleteer website (closed source)
    1. Databases
    2. Indexed search
  11. Launch core website
  12. Advertise using Google AdWords
  13. Beta test Coopleteer
  14. Implement Cooperscript SDK
    1. WYSIWYG Coopertags editor
    2. Cooperscript code editor
  15. Design full Coopleteer website
  16. Launch full website
  17. Accept credit card payments

Public Fields

Public fields are Cooperscript fields (method variables) which are declared in a var block, whereas private (inner) fields are declared in an ivar block. Public fields which include getters and/or setters cannot be modified directly using an assignment statement, except within the class in which they are declared. For a field called myfield, the corresponding getter method is called get-myfield, and the corresponding setter method is called set-myfield. For a boolean field called myfield, the corresponding getter method is called is-myfield. For a boolean field called is-myfield, the corresponding getter method is called get-myfield.

[ Back to Top ]