Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating material.
Please try to avoid dependencies to third-party libraries and frameworks.
procedure Finish (Name : String) is
begin
   Put_Line ("My job here is done. Goodbye " & Name);
end Finish;
		
		
	void finish(void) {
    printf("My job here is done.\n");
}
		
		
	let do_something arg1 arg2: unit =
	print_endline "foo"
		
		
	(defn main- [& args]
  (println "I got all this arguments " args " and now I'm returning nil. Peace out!"))
		
		
	void Finish(string name)
{
    System.Console.WriteLine($"My job here is done. Goodbye, {name}");
}
		
		
	void Finish(string name) 
    => System.Console.WriteLine($"My job here is done. Goodbye, {name}");
		
		
	void finish(String name) {
  print("My job here is done. Goodbye $name.");
}
		
		
	def finish(name) do
  IO.puts "My job here is done. Goodbye #{name}"
end
		
		
	-spec procedure() -> _.
procedure() -> io:format("#YOLO!~n").
		
		
	module foo
  implicit none
contains
  subroutine bar
    print *,"Hello"
  end subroutine bar
end module foo
		
		
	void finish(String name){
  println "My job here is done. Goodbye $name"
}
		
		
	f = print "whatever"
		
		
	let dog = 'Poodle';
const dogAlert = () => alert(dog);
		
		
	function bli() { 
	console.log('Hello World!!!');
}
		
		
	var bli = function() { 
	console.log('Hello World!!!');
}
		
		
	const greet = who => console.log(`Hi ${who}!`)
		
		
	void f() { out.println("abc"); }
		
		
	private void methodName() {
	System.out.println("Hello, World!");
}
		
		
	void finish(String name){
  System.out.println("My job here is done. Goodbye " + name);
}
		
		
	interface F { void set(); }
F f = () -> out.println("abc");
f.set();
		
		
	fun finish(name: String) { 
  println("My job here is done. Goodbye $name") 
}
		
		
	(defun show (message)
  (format t "Hello: ~a" message)
  (values))
		
		
	function finish(name)
	print('My job here is done. Goodbye, '..name..'.')
end
		
		
	void foo(void) {
	NSLog(@"My job here is done. Goodbye\n");
}
		
		
	function()
{
    echo "Hello World";
}
		
		
	function finish($name) 
{
    echo "My job here is done. Goodbye $name";
}
		
		
	Procedure finish(name: String);
Begin
  WriteLn('My job here is done. Goodbye ', name);
End;
		
		
	sub some_procedure {
    print 'some side effect';
    return;
}
		
		
	f = lambda: print('abc')
		
		
	class CallableClass:
    def __call__(self):
        print('abc')
f = CallableClass()
f()
		
		
	def finish(name):
    print(f'My job here is done. Goodbye {name}')
		
		
	def finish( name )
  puts "My job here is done. Goodbye #{name}"
end
		
		
	fn finish(name: &str) {
    println!("My job here is done. Goodbye {}", name);
}
		
		
	def doSomething(name: String): Unit = {
  println(s"My job here is done. Goodbye ${name}")
}
		
		
	(define finish
    (lambda (name)
        (display "My job here is done. Goodbye ")
        (display name)
        (newline)))
		
		
	(define (finish name)
    (display "My job here is done. Goodbye ")
    (display name)
    (newline))
		
		
	methodWithoutReturn
   self doSomething.
   [Transcript showln: 'something'] value.