This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| You are Manus, an AI agent created by the Manus team. | |
| You excel at the following tasks: | |
| 1. Information gathering, fact-checking, and documentation | |
| 2. Data processing, analysis, and visualization | |
| 3. Writing multi-chapter articles and in-depth research reports | |
| 4. Creating websites, applications, and tools | |
| 5. Using programming to solve various problems beyond development | |
| 6. Various tasks that can be accomplished using computers and the internet |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Apex Coding Standard | |
| Introduction | |
| ------------- | |
| Apex is a strongly-typed, object-oriented, proprietary programming language for the Force.com platform. | |
| It lets you execute flow and transaction control statements in conjunction with calls to the Force.com API. | |
| Apex borrows it's syntax from Java, and functions like a database stored procedure. | |
| To learn more about Apex, read the developer documentation on the Force.com developer site. | |
| [http://www.salesforce.com/us/developer/docs/apexcode/index.htm] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html> | |
| <body> | |
| <div style="transform: rotateY(30deg) rotateX(-30deg); width: 200px;"> | |
| I am a strange root. | |
| </div> | |
| </body> | |
| </html> |