Skip to content

Instantly share code, notes, and snippets.

View rhaynet's full-sized avatar
💭
Available for jobs

Abioye Faruk rhaynet

💭
Available for jobs
View GitHub Profile
@rhaynet
rhaynet / TextView.java
Created March 3, 2018 01:19 — forked from udacityandroid/TextView.java
Android for Beginners : Simplified TextView class
/**
* Displays text to the user.
*/
public class TextView extends View {
// String value
private String mText;
// Text color of the text
private int mTextColor;
main(){
int score = 50;
int average = 60;
if(score>= average-5){
if(score>=60){
print("You have passed");
}else{
print("You have failed");