A brief history of programming languages ;-)

SQL
		SELECT GreetingString
		FROM tblGreeting
		WHERE GreetingString LIKE '%goyz%';
		
ANSI C
		void greeting(void)
		{
		  printf("Hello, goyz and birlz!");
		}
		
Visual Basic
		Sub Greeting()
		    MsgBox "Hello, goyz and birlz!"
		End Sub
		
Cobol
		GREETING SECTION.
		GREETING-01.
		    DISPLAY "Hello, goyz and birlz!".
		GREETING-X.
		    EXIT.
		
Java
		public class Greeting
		{
		  public static void main(String[] args)
		  {
		    System.out.println("Hello, goyz and birlz!");
		  }
		}
		
Python
		class greeter:
		  def __init__(self, message):
		    self.greet_string = message

		  def greet(self):
		    print(self.greet_string)

		g = greeter('Hello, goyz and birlz!')
		g.greet()		
    
© SDFH 2018