Created
August 7, 2013 04:26
-
-
Save budougumi0617/6171171 to your computer and use it in GitHub Desktop.
MarkdownとSyntaxHighlighterを併用する。 ref: http://qiita.com/budougumi0617@github/items/28eee77bec22991651fc
This file contains 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
#include "Foo.h" | |
public class Foo{ | |
int dammyInt; | |
double dammyDouble; | |
public void Foo(){ | |
dammyInt = 0; | |
dammyDouble = 0.; | |
} | |
public void addInt(){ | |
dammyInt++; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment