Skip to content

jordandarlington/learn-java

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

Learn Java

Contributors Forks Stargazers Issues MIT License LinkedIn


Contents

Introduction

Variables

String name = "Jordan"; //text - double quotes
int number = 1; //integer - no decimal
float decimal = 1.2; //decimal
char letter = 'a'; //single character - single quotes
boolean value = true; //true or false

- - -

String language; //declare without value
language = "Java"; //then assign value

- - -

final int newNumber = 2; //value cannot be overwritten

License

This repo is licensed under an MIT license. A copy of the license is also provided.


About

No description or website provided.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages