new java helloworld code

This commit is contained in:
Ana Carolina 2018-10-07 18:10:52 -03:00
parent 4da95e9a22
commit b788143939
2 changed files with 15 additions and 0 deletions

View File

@ -105,6 +105,12 @@ Please note that this project is released with a [Code of Conduct](CODE_OF_CONDU
- [![twitter-alt][twitter-img]](https://twitter.com/alokraj68)
[![github-alt][github-img]](https://github.com/alokraj68)
### Ana Carolina Ferreira
- I am a software developer undergraduate student, from Brasil
- Me: Punk Rock, Open Source, Makeup
- [![twitter-alt][twitter-img]](https://twitter.com/anadedavid)
[![github-alt][github-img]](https://github.com/anacdf)
### Ananya
- I'm a junior year student.
- I am an Android Developer. I also work on other technologies such as web development using Django and Machine Learning.

View File

@ -0,0 +1,9 @@
// LANGUAGE: Java
// AUTHOR: Ana Carolina
// GITHUB: https://github.com/anacdf
public class HelloWorld {
public static void main(String[] args) {
System.out.print("Hello, World");
}
}