Originally Posted by eschwartz
According to that logic...
Code:
/**
* AddTwoPlusTwo.java
*
* A basic program to add 2 + 2.
*
* Copyright June 30 2015 by Eli Schwartz. All Rights Reserved.
*/
class AddTwoPlusTwo
{
public static void main(String[] args)
{
int ans = 2 + 2;
System.out.println("The answer is: "+ans);
}
}
The mathematical equation "2 + 2 = 4" as expressed through the java programming language is now copyrighted by me. Profit! 
|