Syntax Station

A simple reference for programming fundamentals.

Welcome to Syntax Station!

This site provides a quick and easy way to review the syntax for various programming languages. Select any of the available languages to view a series of code snippets that go over the basics of that language's syntax. For example, functions in Python look like this:

Functions (Python)

def maxValue(num1, num2):
   if num1 > num2:
      return num1
   else:
      return num2

print maxValue(5, 10)  # prints 10

This site was originally created to act as a simple reference for students of my online courses:

Please email me at kyle@challacade.com if you have any questions regarding the site. Or as always, you can message me through Udemy. You can find my profile here.