File tree 5 files changed +2662
-4
lines changed
5 files changed +2662
-4
lines changed Original file line number Diff line number Diff line change 1
1
navbar :
2
- - url : http://ycombinator.com/arc/tut.txt
3
- label : Tutorial
2
+ - url : http://arclanguage.org
3
+ label : Arc
4
4
- url : http://arclanguage.org/forum
5
5
label : Forum
6
6
- url : http://paulgraham.com/arc.html
Original file line number Diff line number Diff line change
1
+ <!DOCTYPE html>
2
+ < html >
3
+ < head >
4
+ < meta charset ="utf-8 ">
5
+ < title > Arc Programming Language</ title >
6
+ < link rel ="shortcut icon " href ="/assets/favicon.png ">
7
+ < link href ="/assets/bootstrap.css " rel ="stylesheet ">
8
+ </ head >
9
+
10
+ < body style ='width:40em '>
11
+ < header >
12
+ < div class ="navbar navbar-inverse ">
13
+ < div class ="navbar-inner ">
14
+ < ul class ="nav navbar-nav ">
15
+ {% for item in site.navbar %}
16
+ < li {% if page.url contains item.url %}class ="active "{% endif %} >
17
+ < a href ="{{ item.url }} "> {{ item.label }}</ a >
18
+ </ li >
19
+ {% endfor %}
20
+ </ ul >
21
+ </ div >
22
+ </ div >
23
+ </ header >
24
+
25
+ < div class ="container-fluid ">
26
+ {{ content }}
27
+ </ div >
28
+ </ body >
29
+ </ html >
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ title: Arc Programming Language
11
11
</div>
12
12
<ul>
13
13
<li>Try it in your browser at <a href='http://tryarc.org'>tryarc.org</a>.</li>
14
- <li>Work through the official <a href='http://ycombinator.com/arc/ tut.txt '>tutorial</a>.</li>
14
+ <li>Work through the <a href='tut-stable.html '>tutorial</a>.</li>
15
15
<li>Read the <a href='/ref/'>detailed documentation</a>.</li>
16
16
<li>Future official versions may make incompatible changes.</li>
17
17
</ul>
@@ -37,7 +37,7 @@ title: Arc Programming Language
37
37
href='https://sites.google.com/site/arclanguagewiki/arc-3_1/known-bugs-and-gotchas'>bugfixes</a>
38
38
from the folks at <a href='http://arclanguage.org/forum'>the forum</a>.
39
39
(Arc 3.1 was last updated in 2009.)</li>
40
- <li>Tries to keep with the spirit and philosophy of Arc. The <a href='http://ycombinator.com/arc/ tut.txt'> tutorial</a> still applies to it .</li>
40
+ <li>Tries to keep with the spirit and philosophy of Arc. <a href='tut-anarki.html'>Its version of the tutorial</a> mostly follows Arc 3.1 .</li>
41
41
<li>Like Arc, makes no guarantees of compatibility. Anyone can make changes to it.</li>
42
42
<li>Commit privileges freely given to anyone who asks.</li>
43
43
<li>A gateway to <a href='https://sites.google.com/site/arclanguagewiki'>more arcane forks</a>.</li>
You can’t perform that action at this time.
0 commit comments