Skip to content

Commit

Permalink
Added filename parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
adambard committed Jun 30, 2013
1 parent 7135adb commit 83aeecb
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 3 deletions.
7 changes: 5 additions & 2 deletions c.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
language: c
author: Adam Bard
author_url: http://adambard.com/
filename: learnc.c
---

Ah, C. Still the language of modern high-performance computing.
Expand All @@ -12,13 +13,15 @@ memory management and C will take you as far as you need to go.

```c
// Single-line comments start with //

/*
Multi-line comments look like this.
*/

// Import headers with #include
#include <stdlib.h>
#include <stdio.h>
#include <string.h>

// Declare function signatures in advance in a .h file, or at the top of
// your .c file.
Expand Down Expand Up @@ -75,7 +78,7 @@ unsigned long long ux_long_long;
// on your machine. sizeof(T) gives you the size of a variable with type T in
// bytes so you can express the size of these types in a portable way.
// For example,
printf("%d\n", sizeof(int)); // => 4 (on machines with 4-byte words)
printf("%lu\n", sizeof(int)); // => 4 (on machines with 4-byte words)

// Arrays must be initialized with a concrete size.
char my_char_array[20]; // This array occupies 1 * 20 = 20 bytes
Expand Down Expand Up @@ -107,7 +110,7 @@ Char #17 is the NUL byte.
Chars #18, 19 and 20 have undefined values.
*/

printf("%d\n", a_string[16]); => 0
printf("%d\n", a_string[16]); // => 0

///////////////////////////////////////
// Operators
Expand Down
1 change: 1 addition & 0 deletions clojure.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
language: clojure
author: Adam Bard
author_url: http://adambard.com/
filename: test.clj
---

Clojure is a variant of LISP developed for the Java Virtual Machine. It has
Expand Down
1 change: 1 addition & 0 deletions dart.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
language: dart
author: Joao Pedrosa
author_url: https://github.com/jpedrosa/
filename: learndart.dart
---

Dart is a newcomer into the realm of programming languages.
Expand Down
1 change: 1 addition & 0 deletions file.erb
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<%= rawcode %>
1 change: 1 addition & 0 deletions fsharp.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
language: F#
author: Scott Wlaschin
author_url: http://fsharpforfunandprofit.com/
filename: learnfsharp.fs
---

F# is a general purpose functional/OO programming language. It's free and open source, and runs on Linux, Mac, Windows and more.
Expand Down
1 change: 1 addition & 0 deletions haskell.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
language: haskell
author: Adit Bhargava
author_url: http://adit.io
filename: learnhaskell.hs
---

Haskell was designed as a practical, purely functional programming language. It's famous for
Expand Down
1 change: 1 addition & 0 deletions lua.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
language: lua
author: Tyler Neylon
author_url: http://tylerneylon.com/
filename: learnlua.lua
---

```lua
Expand Down
1 change: 1 addition & 0 deletions php.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
language: php
author: Malcolm Fell
author_url: http://emarref.net/
filename: learnphp.php
---

This document describes PHP 5+.
Expand Down
1 change: 1 addition & 0 deletions python.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
language: python
author: Louie Dinh
author_url: http://ldinh.ca
filename: learnpython.py
---

Python was created by Guido Van Rossum in the early 90's. It is now one of the most popular
Expand Down
2 changes: 1 addition & 1 deletion r.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
language: R
author: e99n09
author_url: http://github.com/e99n09

filename: learnr.r
---

R is a statistical computing language.
Expand Down

0 comments on commit 83aeecb

Please sign in to comment.