Education & Sharing by Gregory - Senior Systems Administrator & Developer
Senior Systems Administrator, student of Python/Java development and web design. Passionate about IT education and sharing knowledge.
def greet(name):
print(f"Hello, {name}!")
greet("Gregory")
public class HelloGregory {
public static void main(String[] args) {
System.out.println("Hello, Gregory!");
}
}