Skip to content

Instantly share code, notes, and snippets.

View anton-abyzov's full-sized avatar

Anton Abyzov anton-abyzov

View GitHub Profile
@anton-abyzov
anton-abyzov / 0_reuse_code.js
Created November 12, 2015 14:58
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
package com.example.smartphoneappdevelopguide.objectoriented.postsystem;
import com.example.smartphoneappdevelopguide.objectoriented.postsystem.service.Center;
import com.example.smartphoneappdevelopguide.objectoriented.postsystem.town.Address;
import com.example.smartphoneappdevelopguide.objectoriented.postsystem.town.House;
import com.example.smartphoneappdevelopguide.objectoriented.postsystem.town.HouseMap;
import com.example.smartphoneappdevelopguide.objectoriented.postsystem.user.Customer;
public class Main {