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.
#include <avr/interrupt.h> | |
#include <avr/io.h> | |
#include <avr/wdt.h> | |
#include <stdlib.h> | |
#include <string.h> | |
void init_usart(void) | |
{ | |
cli(); |
Single-line comments are started with //
. Multi-line comments are started with /*
and ended with */
.
C# uses braces ({
and }
) instead of indentation to organize code into blocks.
If a block is a single line, the braces can be omitted. For example,
class Node: | |
def __init__(self, val): | |
self.val = val | |
self.leftChild = None | |
self.rightChild = None | |
def get(self): | |
return self.val | |
def set(self, val): |
Add this in your ini file:
[alembic:exclude]
tables = spatial_ref_sys
In env.py
:
import re