One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
The major important thing is the documentation has to be implementation independent and specification concise. Dependencies where ever necessary are allowed to be specified.
Also it is allows HTML tags to be used in between the documentation comments. Pretty much all tags are self explanatory.
Meta Annotations
@author Ex: @author Jane Doe
@version Ex: @version v1.0-alpha
#!/bin/bash | |
if [ $# -eq 0 ]; then | |
echo "Usage: ./pushover <message> [title]" | |
exit | |
fi | |
MESSAGE=$1 | |
TITLE=$2 |
A complete list of books, articles, blog posts, videos and neat pages that support Data Fundamentals (H), organised by Unit.
If the resource is available online (legally) I have included a link to it. Each entry has symbols following it.
From 4622d722c6dae54fd819b61b515d8d92ef87c50d Mon Sep 17 00:00:00 2001 | |
From: Noffearr <[email protected]> | |
Date: Mon, 18 May 2015 10:49:46 -0400 | |
Subject: [PATCH] * Patch CrossFaction | |
* Atualizado e Fixado | |
--- | |
src/server/game/Battlegrounds/Arena.cpp | 4 +- | |
src/server/game/Battlegrounds/Battleground.cpp | 55 ++-- | |
src/server/game/Battlegrounds/Battleground.h | 2 +- |
// DS1302 RTC | |
// ---------- | |
// | |
// Open Source / Public Domain | |
// | |
// Version 1 | |
// By arduino.cc user "Krodal". | |
// June 2012 | |
// Using Arduino 1.0.1 | |
// Version 2 |
""" | |
This file demonstrates writing tests using the unittest module. These will pass | |
when you run "manage.py test". | |
Replace this with more appropriate tests for your application. | |
""" | |
from django.test import TestCase | |