Skip to content

Instantly share code, notes, and snippets.

@LeoFalco
Created June 21, 2018 15:41
Show Gist options
  • Save LeoFalco/923daad27b0baac2ec6fa197c5297d00 to your computer and use it in GitHub Desktop.
Save LeoFalco/923daad27b0baac2ec6fa197c5297d00 to your computer and use it in GitHub Desktop.
import br.com.crush.BoyFriend;
import br.com.crush.GirlFirend;
public class TrueLove {
public static void main(String args...){
private final GirlFriend thallia = new GirlFirend("Thallia");
private BoyFriend me = new BoyFriend("leo");
Invite invite = me.inviteNovel(thallia);
thallia.accept(invite);
While(true){
me.love(thallia);
thallia.love(me);
}
}
}
@LiahStoco
Copy link

I Love this❤

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment