Skip to content

Latest commit

 

History

History
39 lines (31 loc) · 740 Bytes

README.md

File metadata and controls

39 lines (31 loc) · 740 Bytes

CSCI 4950 Final Project Example

To create a git repository in the current directory, run:

git init
git remote add origin https://foo
git add my-file.md
git commit -m "Commit message"
git push origin master

Here is a link: GitHub's markdown documentation

We can make a list:

  • foo
  • bar
  • baz
    • here is a sublist
    • more sublist
      • is this a subsublist?
      • let's found out!

We can have syntax-highlighted code:

def foo():
    print("Hello, world!")
function foo () {
    console.log("Hello, world!");
}