Skip to content

Commit

Permalink
Merge pull request #7422 from agusrosero/develop
Browse files Browse the repository at this point in the history
#00 - Java
  • Loading branch information
Roswell468 authored Dec 17, 2024
2 parents d804770 + 29a715a commit 5fe1792
Showing 1 changed file with 23 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
public class agusrosero {
public static void main(String[] args) {
// https://www.java.com/es/

// Comentario de una linea
/*
* Comentario de
* varias lineas
*/

var miVariable = "Hola!";
final var MI_CONSTANTE = 3.14;

double miDouble = 3.33;
float miFlotante = 2.2f;
int miEntero = 10;
String miCadena = "Hola!";
boolean miBooleano = true;
char miChar = 'A';

System.out.println("¡Hola, [Java]!");
}
}

0 comments on commit 5fe1792

Please sign in to comment.