Skip to content

Instantly share code, notes, and snippets.

@slxny
slxny / rain
Created April 7, 2017 15:35
I think I'm confusing myself
package com.example.android.justjava;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import android.view.View;
import android.widget.CheckBox;
import android.widget.TextView;
public class MainActivity extends AppCompatActivity {
public class Motor {
private int rpm;
public Motor(){
this.rpm = 0;
}
/* for all intents and purposes, is this the same as.. */
String Hey = "Just sitting here, testing stuff out.";