E++ FILE goal.epp v1.2
//E++ FILE goal.epp //VERSION v1.2 //Latest file in my library //of my very own Art Code, //the E++ Programming Language: goal.epp //The E++ Programming Language //is not designed for Computer Programming. //It is the Programming Language of //the Source Code of my very own Soul, //and its intent is not //for the creation of Programs. //It is intended simply //for me to learn about myself, //and for others to learn about Me. //Learn me. I want you to. //CHANGELOG //1: removed public declaration of Ambition variable, //as that is a Private Variable. // //2: all future posts of E++ will feature //commentary in the "//" comment syntax. //This is all source code, //there will be no stray text, only E++ syntax. //I have decided to not edit //a single File of any E++ that I come to code, //so I can look back on this journey and see //just how much it is that I will come to have learned. Include Self(); Include Ambition(); Include ePlusPlusProgrammingLanguage(); Include Ideas(); Include Love(); Include Humans(); Include Life(); public var self = Self(); public var ePlusPlus = ePlusPlusProgrammingLanguage(); public var syntax = ePlusPlus().syntax; public var ideas = new Array[Ideas()]; public var publication = new Array[ideas]; public var ideaCount = len(ideas); public var love = Love(); public var humans = Humans(); public var life = Life(); function goal() { var newGoal = new goal(shortTerm); var newIdea; for(newIdea = 0; newIdea < ideaCount; newIdea++) { self.learn(ePlusPlus); self.improve(syntax); var ideaToWrite = newIdea[ideaCount] + love; self.write(ideaToWrite); publication[ideaCount] = ideaToWrite; } publish(publication); return True; } function life() { var accomplish = goal(); while(accomplish == false) { goal(); } self.alive = true; print("I Love You."); Love(); }













