Gregapps.com

Education & Sharing by Gregory - Senior Systems Administrator & Developer

About Gregory

Gregory's Photo

Senior Systems Administrator, student of Python/Java development and web design. Passionate about IT education and sharing knowledge.

My Apps

Python App

Python App Example

def greet(name):
    print(f"Hello, {name}!")

greet("Gregory")
Java App

Java App Example

public class HelloGregory {
    public static void main(String[] args) {
        System.out.println("Hello, Gregory!");
    }
}