Skip to content

This repository is a landing pad for code snippets, theoretical practice, syntactic examples as well as various markup angles aspects. Also included will be semantic explanation and documentation in regards to the specific example or excerpt.

Notifications You must be signed in to change notification settings

Chef-Code/code-examples

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 

Repository files navigation

code-examples

This repository is a landing pad for code snippets, theoretical practice, syntactic examples as well as various markup angles aspects.
Also included will be semantic explanation and documentation in regards to the specific example or excerpt.

Language Repository This Document
C# C# Folder C# Document
C++ C++ Folder C++ Document
CSS CSS Folder CSS Document
JavaScript JS Folder JavaScript Document
JS_Libraries JS Libraries JS Libraries Document

###C Sharp Section

var a = "C# string variable";
a.ToString();

###C++ Section

//TODO: learn C++ so I can place an example here :)

###CSS Section

@media screen and (min-width: 480px) {
    body {
        background-color: green;
        color: yellow;
    }
}

###JavaScript Section

let thereBeLight = (function () {
    let me = new SuperHero();
    let allPowers = ["earth", "rain", "wind", "fire"];

    function getPowers(...allPowers) {
        for (let aP of allPowers) me.Power += aP; //debug this, might be out of scope
    }
})();

###JS Libraries Section

About

This repository is a landing pad for code snippets, theoretical practice, syntactic examples as well as various markup angles aspects. Also included will be semantic explanation and documentation in regards to the specific example or excerpt.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published