Created
July 18, 2012 18:10
-
-
Save carlosdelfino/3137818 to your computer and use it in GitHub Desktop.
Generate a String to Maple
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
| This is OK!! | |
| This is OK!! | |
| This is OK!! | |
| This is OK!! | |
| This is OK!! | |
| This is OK!! | |
| This is OK!! | |
| This is OK!! | |
| This is OK!! | |
| This is OK!! | |
| This is OK!! | |
| This is OK!! | |
| This is OK!! | |
| This is OK!! | |
| This is OK!! | |
| This is OK!! |
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
| void setup(){ | |
| SerialUSB.begin(); | |
| } | |
| void loop(){ | |
| char * mystr = strGenerator(); | |
| SerialUSB.println(mystr); | |
| SerialUSB.println("This is OK!!"); | |
| } | |
| char * strGenerator(){ | |
| char str[] = "This is Wrong!!"; | |
| return str; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment