The purpose of this site is to provide a quick and easy way to review the syntax for various programming languages. Select any of the six available languages at the top 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:
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:
Udemy
Lua Programming and Game Development with Love2D
MonoGame: Introduction to C# Game Programming
Skillshare
Introduction to Lua Programming
Please email me at kylejschaub@gmail.com if you have any questions or suggestions regarding the site. Or as always, you can message me through Udemy. You can find my profile here, and there should be a "send message" button if you're signed in.