Skip to content

Instantly share code, notes, and snippets.

@shikajiro
Created July 18, 2013 13:49
Show Gist options
  • Save shikajiro/6029448 to your computer and use it in GitHub Desktop.
Save shikajiro/6029448 to your computer and use it in GitHub Desktop.
//Mainクラス
import com.example.watanabe.calc.Calc;
public class Main {
public static void main(String[] args) {
int ans = Calc.add(10, 20);
System.out.println("答えは" + ans);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment