Skip to content
Gustavo García edited this page Apr 1, 2019 · 2 revisions

Welcome to the programming-languages-101 wiki!

This repository will contain samples of the main building blocks of programming such as:

  • Variables
  • Functions
  • Classes
  • Loops
  • Conditionals

and much more!

  • Each programming language will have its own folder and each subcategory (example: Functions) has its own file.
    • Within those files, you can add your examples by first adding a brief comment in the code and then including your example.

Like(Python):

# A Function that returns the smallest of the two arguments
def returnSmallest(a, b):
	if (a > b):
		return b
	else:
		return a

Clone this wiki locally