Skip to content

Commit

Permalink
Update website URL in examples and community docs
Browse files Browse the repository at this point in the history
  • Loading branch information
dgarroDC committed Apr 21, 2019
1 parent 92790cf commit 1d76a77
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.md
Expand Up @@ -9,7 +9,7 @@ to LDPL, including (but not limited to) contributors to the repository code,
mantainers, bug reporters, people who code in LDPL, people who submit issues
and anyone interested and/or involved with the language in any way.

![Hello there!](https://ldpl.lartu.net/images/Visitor.png)
![Hello there!](https://www.ldpl-lang.org/images/Visitor.png)

## Our Pledge

Expand Down
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Expand Up @@ -8,7 +8,7 @@ Anyone can contribute to the LDPL project! As stated on the README.md file, we a

### What do I need to know to contribute to LDPL?

Please take a moment to familiarize yourself with the [Dragon Tamers Code](/CODE_OF_CONDUCT) (LDPL's code of conduct, you are expected and required to behave by this code) and the [LDPL reference](https://ldpl.lartu.net/reference/) (not really a *must* per se, but that's where all the language is documented).
Please take a moment to familiarize yourself with the [Dragon Tamers Code](/CODE_OF_CONDUCT) (LDPL's code of conduct, you are expected and required to behave by this code) and the [LDPL reference](https://www.ldpl-lang.org/reference/) (not really a *must* per se, but that's where all the language is documented).

C++ knowledge is a must if you want to contribute to the compiler code, and LDPL knowledge is a must if you want to write examples or LDPL software. Drawing is not really a must if you want to submit a drawing, but you may get better results if you know how to draw. We'll love your art anyway, though.

Expand Down Expand Up @@ -36,8 +36,8 @@ If you are submiting LDPL fanfiction, please ask yourself why am I doing this. T

### Links to external documentation, mailing lists, or a code of conduct.

- Official LDPL Website: [http://ldpl.lartu.net/](http://ldpl.lartu.net/)
- LDPL Reference: [http://ldpl.lartu.net/reference](http://ldpl.lartu.net/reference)
- Official LDPL Website: [http://www.ldpl-lang.org/](http://www.ldpl-lang.org/)
- LDPL Reference: [http://www.ldpl-lang.org/reference](http://www.ldpl-lang.org/reference)
- LDPL Reddit Community: [http://reddit.com/r/ldpl](http://reddit.com/r/ldpl)
- IRC Channel: #ldpl at [irc.freenode.net](http://irc.freenode.net)
- [Dragon Tamers Code](/CODE_OF_CONDUCT)
Expand Down
2 changes: 1 addition & 1 deletion examples/99bottles.ldpl
@@ -1,6 +1,6 @@
# LDPL 99 Bottles of Beer
# by Martin del Rio
# http://ldpl.lartu.net/
# http://www.ldpl-lang.org/

DATA:
bottles-in-the-wall is number
Expand Down
2 changes: 1 addition & 1 deletion examples/brainfuck.ldpl
@@ -1,6 +1,6 @@
# Brainfuck Interpreter
# by Martin del Rio
# http://ldpl.lartu.net/
# http://www.ldpl-lang.org/
# This example can also be used to prove the Turing-Completeness of LDPL!
# Usage: ldpl brainfuck.ldpl <brainfuck source filename>

Expand Down
2 changes: 1 addition & 1 deletion examples/disancount.ldpl
@@ -1,6 +1,6 @@
# Disan Count
# by Martin del Rio
# http://ldpl.lartu.net/
# http://www.ldpl-lang.org/

DATA:
n is number # Number to count down from
Expand Down
2 changes: 1 addition & 1 deletion examples/euler.ldpl
@@ -1,6 +1,6 @@
# Prints the sum of all the multiples of 3 or 5 below 1000
# by Martin del Rio
# http://ldpl.lartu.net/
# http://www.ldpl-lang.org/

data:
result is number
Expand Down
2 changes: 1 addition & 1 deletion examples/explode.ldpl
@@ -1,6 +1,6 @@
# Explode String Splitter
# by Martin del Rio
# http://ldpl.lartu.net/
# http://www.ldpl-lang.org/

DATA:
explode/words is text vector
Expand Down
2 changes: 1 addition & 1 deletion examples/factorial.ldpl
@@ -1,6 +1,6 @@
# Factorial Calculator
# by Martin del Rio
# http://ldpl.lartu.net/
# http://www.ldpl-lang.org/

DATA:
result is number
Expand Down
2 changes: 1 addition & 1 deletion examples/fibonacci.ldpl
@@ -1,6 +1,6 @@
# Fibonacci Sequence
# by Martin del Rio
# http://ldpl.lartu.net/
# http://www.ldpl-lang.org/

DATA:
a is number
Expand Down
2 changes: 1 addition & 1 deletion examples/helloworld.ldpl
@@ -1,6 +1,6 @@
# LDPL Hello World
# by Martin del Rio
# http://ldpl.lartu.net/
# http://www.ldpl-lang.org/

PROCEDURE:
display "Hello World!" crlf
2 changes: 1 addition & 1 deletion examples/sqrt.ldpl
@@ -1,6 +1,6 @@
# Square Root Calculator
# by Martin del Rio
# http://ldpl.lartu.net/
# http://www.ldpl-lang.org/

DATA:
# Square-root sub-procedure
Expand Down

0 comments on commit 1d76a77

Please sign in to comment.