Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
package com.linkedin.javacodechallenges;

/**
* Hello world!
*
*/
import java.time.LocalDate;

public class App
{
public static void main( String[] args )
{
System.out.println( "Hello World!" );
// Create function to calculate the date that's
// 100 days from now

public static void main( String[] args ){

LocalDate today = LocalDate.now();
LocalDate futureDate = today.plusDays(100);

System.out.println("Today's date: " + today);
System.out.println("100 days from now is... " + futureDate);
}
}
Binary file not shown.