FiM++ Community Wiki

Editing

For

1
  • The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit. If you are undoing an edit that is …
Latest revision Your text
Line 17: Line 17:
   
 
=== Iterate through an array ===
 
=== Iterate through an array ===
{{codeblock|{{code|keyword|Did you know that}}{{code|whitespace|&nbsp;}}{{code|variable|Berry Punch's favorite thing to say}}{{code|whitespace|&nbsp;}}{{code|keyword|is}}{{code|whitespace|&nbsp;}}{{code|type|the word}}{{code|whitespace|&nbsp;}}{{code|literal|&ldquo;Cheerwine&rdquo;}}{{code|punctuation|?}}{{code|whitespace|<BR/>}}{{code|keyword|For every}}{{code|whitespace|&nbsp;}}{{code|type|character}}{{code|whitespace|&nbsp;}}{{code|variable|c}}{{code|whitespace|&nbsp;}}{{code|keyword|in}}{{code|whitespace|&nbsp;}}{{code|variable|Berry Punch's favorite thing to say}}{{code|whitespace|&nbsp;}}{{code|punctuation|.}}{{code|punctuation|.}}{{code|punctuation|.}}{{code|whitespace|<BR/>}}{{code|keyword|I said}}{{code|whitespace|&nbsp;}}{{code|variable|c}}{{code|punctuation|.}}{{code|whitespace|<BR/>}}{{code|keyword|That's what I did}}{{code|punctuation|!}}}}
+
{{codeblock|{{code|keyword|Did you know that}}{{code|whitespace|&nbsp;}}{{code|variable|Berry Punch}}{{code|whitespace|&nbsp;}}{{code|keyword|likes}}{{code|whitespace|&nbsp;}}{{code|type|the phrase}}{{code|whitespace|&nbsp;}}{{code|literal|&ldquo;Cheerwine&rdquo;}}{{code|punctuation|?}}{{code|whitespace|<BR/>}}{{code|keyword|For every}}{{code|whitespace|&nbsp;}}{{code|type|character}}{{code|whitespace|&nbsp;}}{{code|variable|c}}{{code|whitespace|&nbsp;}}{{code|keyword|in}}{{code|whitespace|&nbsp;}}{{code|variable|Berry Punch}}{{code|whitespace|&nbsp;}}{{code|punctuation|.}}{{code|punctuation|.}}{{code|punctuation|.}}{{code|whitespace|<BR/>}}{{code|keyword|I said}}{{code|whitespace|&nbsp;}}{{code|variable|c}}{{code|punctuation|.}}{{code|whitespace|<BR/>}}{{code|keyword|That's what I did}}{{code|punctuation|!}}}}
   
 
==== Java Equivalent ====
 
==== Java Equivalent ====
{{codeblock|<SOURCE LANG=java>char[] Berry_Punchs_favorite_thing_to_say = new char[]{'C','h','e','e','r','w','i','n','e'};
+
{{codeblock|<SOURCE LANG=java>char[] BerryPunch = new char[]{'C','h','e','e','r','w','i','n','e'};
for(char c : Berry_Punchs_favorite_thing_to_say){;;
+
for(char c : BerryPunch){;;
 
System.out.println(c);
 
System.out.println(c);
 
}</SOURCE>}}
 
}</SOURCE>}}
  Loading editor
Below are some commonly used wiki markup codes. Simply click on what you want to use and it will appear in the edit box above.

View this template