Skip to content

Instantly share code, notes, and snippets.

@golenishchev
golenishchev / ComputerAccesories.java
Last active November 2, 2015 08:59
Prints out a list of computer accesories
public class ComputerAccesories {
public static void main(String[] args) {
String computerProcessor = "quad core Q6600 Intel processor with frequency 2.4GHz, ";
String memory = "four gigs of RAM, ";
String fans = "Noctua 120mm fans, ";
String videoCard = "Radeon HD 4870 video card, ";
String powerSupply = "450W power supply, ";
String motherBoard = "p5k Asus motherboard, ";
String hardDiscDrive = "512GB HDD, ";
System.out.println("Thats what inside of my PC:");
@golenishchev
golenishchev / HelloWorldJava.java
Created October 30, 2015 20:35
Learning Java with mentor
public class HelloWorldJava {
public static void main(String[] args) {
System.out.println("Hello World Java");
}
}