|
2 | 2 | <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
3 | 3 | <channel>
|
4 | 4 | <title>About on Cognate: Readable and concise concatenative programming</title>
|
5 |
| - <link>https://cognate-lang.github.io/</link> |
| 5 | + <link>http://localhost:1313/</link> |
6 | 6 | <description>Recent content in About on Cognate: Readable and concise concatenative programming</description>
|
7 | 7 | <generator>Hugo</generator>
|
8 | 8 | <language>en-us</language>
|
9 |
| - <atom:link href="https://cognate-lang.github.io/index.xml" rel="self" type="application/rss+xml" /> |
| 9 | + <atom:link href="http://localhost:1313/index.xml" rel="self" type="application/rss+xml" /> |
10 | 10 | <item>
|
11 | 11 | <title>Learn Cognate</title>
|
12 |
| - <link>https://cognate-lang.github.io/learn/</link> |
| 12 | + <link>http://localhost:1313/learn/</link> |
13 | 13 | <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
14 |
| - <guid>https://cognate-lang.github.io/learn/</guid> |
| 14 | + <guid>http://localhost:1313/learn/</guid> |
15 | 15 | <description>Learn Cognate A brief introduction to the language Install First install CognaC the Cognate Compiler from here using the provided instructions. Currently CognaC will run on recent Linux or Mac systems. Windows users can install it onto the Windows Subsystem for Linux &ndash; native Windows support is planned.
Invoking CognaC is simple. If you have a file named foo.cog containing a Cognate program, it can be compiled into an executable named foo with the following command.</description>
|
16 | 16 | </item>
|
17 | 17 | <item>
|
18 | 18 | <title>Prelude</title>
|
19 |
| - <link>https://cognate-lang.github.io/reference/prelude/</link> |
| 19 | + <link>http://localhost:1313/reference/prelude/</link> |
20 | 20 | <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
21 |
| - <guid>https://cognate-lang.github.io/reference/prelude/</guid> |
| 21 | + <guid>http://localhost:1313/reference/prelude/</guid> |
22 | 22 | <description>Prelude Drop Discard the top stack item.
Print Drop "foo" "bar"; Source Def Drop as ( Let X ); Swap Swaps the top two stack items.
Print Swap 1 2; Source Def Swap as ( Let X ; Let Y ; Y X ); Do Execute a block.
Do ( Print "hello world!" ); Source Def Do as ( Def F ; F ); Any? Takes a parameter of any type and returns True</description>
|
23 | 23 | </item>
|
24 | 24 | </channel>
|
|
0 commit comments