This commit is contained in:
plane000
2018-07-27 13:16:24 +01:00
parent c67293f535
commit 592b7446e4
17 changed files with 1858 additions and 2 deletions

View File

@@ -0,0 +1,28 @@
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package first.program;
/**
*
* @author Ben
*/
public class FirstProgram {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
Person dave = new Person("Dave");
System.out.println(dave.Name);
}
}
class Person {
public String Name;
public Person(String name) {
Name = name;
}
}