commit e896ff05b2e5e3e78b87201251c4d0c3ec9cd4cf Author: vigliom Date: Mon Sep 19 17:58:39 2022 +0200 1er commit diff --git a/.classpath b/.classpath new file mode 100644 index 0000000..ac9ce57 --- /dev/null +++ b/.classpath @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/.project b/.project new file mode 100644 index 0000000..0765732 --- /dev/null +++ b/.project @@ -0,0 +1,17 @@ + + + HolaFichero + + + + + + org.eclipse.jdt.core.javabuilder + + + + + + org.eclipse.jdt.core.javanature + + diff --git a/.settings/org.eclipse.core.resources.prefs b/.settings/org.eclipse.core.resources.prefs new file mode 100644 index 0000000..4824b80 --- /dev/null +++ b/.settings/org.eclipse.core.resources.prefs @@ -0,0 +1,2 @@ +eclipse.preferences.version=1 +encoding/=UTF-8 diff --git a/.settings/org.eclipse.jdt.core.prefs b/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 0000000..dbc27c5 --- /dev/null +++ b/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,14 @@ +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled +org.eclipse.jdt.core.compiler.codegen.targetPlatform=17 +org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve +org.eclipse.jdt.core.compiler.compliance=17 +org.eclipse.jdt.core.compiler.debug.lineNumber=generate +org.eclipse.jdt.core.compiler.debug.localVariable=generate +org.eclipse.jdt.core.compiler.debug.sourceFile=generate +org.eclipse.jdt.core.compiler.problem.assertIdentifier=error +org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled +org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning +org.eclipse.jdt.core.compiler.release=enabled +org.eclipse.jdt.core.compiler.source=17 diff --git a/bin/dam/daw/com/es/HolaFich.class b/bin/dam/daw/com/es/HolaFich.class new file mode 100644 index 0000000..f4f319e Binary files /dev/null and b/bin/dam/daw/com/es/HolaFich.class differ diff --git a/bin/module-info.class b/bin/module-info.class new file mode 100644 index 0000000..ac64e53 Binary files /dev/null and b/bin/module-info.class differ diff --git a/src/dam/daw/com/es/HolaFich.java b/src/dam/daw/com/es/HolaFich.java new file mode 100644 index 0000000..e685289 --- /dev/null +++ b/src/dam/daw/com/es/HolaFich.java @@ -0,0 +1,11 @@ +package dam.daw.com.es; + +public class HolaFich { + + public static void main(String[] args) { + String a = "Esto Funciona"; + System.out.println(a); + + } + +} diff --git a/src/module-info.java b/src/module-info.java new file mode 100644 index 0000000..2d439bd --- /dev/null +++ b/src/module-info.java @@ -0,0 +1,3 @@ +module HolaFichero { + exports dam.daw.com.es; +} \ No newline at end of file