From a023d044e2458e25d27eaff8b55fb137959b546f Mon Sep 17 00:00:00 2001 From: David Nuon Date: Sat, 27 Feb 2016 11:07:10 -0800 Subject: [PATCH 1/3] Removed extra title and added another example for challenge --- _posts/challenges/2016-02-26-write-a-scripting-language.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/_posts/challenges/2016-02-26-write-a-scripting-language.md b/_posts/challenges/2016-02-26-write-a-scripting-language.md index 41c8c46..fd48880 100644 --- a/_posts/challenges/2016-02-26-write-a-scripting-language.md +++ b/_posts/challenges/2016-02-26-write-a-scripting-language.md @@ -6,8 +6,6 @@ layout: challenge permalink: /challenges/write-a-scripting-language --- -# Write Your Own Scripting Language - Writing your own scripting language is a fun challenge and a good exercise. If you ever wanted to write your own "perfect" language, now's your chance! @@ -19,10 +17,11 @@ Examples of some scripting lagnauges: - Perl - PHP -Examples of some less useful and smaller langauges +Examples of some less useful and smaller langauges: - [Trumpscript](https://github.com/samshadwell/TrumpScript) - [Brainfuck](https://github.com/redevined/brainfuck) + - [Piet](http://www.dangermouse.net/esoteric/piet.html) Here's this week's challenge. Write a langauge! From 83dfeb69913b9116bea0fe113ec179d765984496 Mon Sep 17 00:00:00 2001 From: David Nuon Date: Sat, 27 Feb 2016 14:23:06 -0800 Subject: [PATCH 2/3] Fixed typo of 'language' I can't spell 'language' apparently. --- _posts/challenges/2016-02-26-write-a-scripting-language.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_posts/challenges/2016-02-26-write-a-scripting-language.md b/_posts/challenges/2016-02-26-write-a-scripting-language.md index fd48880..9b6e09f 100644 --- a/_posts/challenges/2016-02-26-write-a-scripting-language.md +++ b/_posts/challenges/2016-02-26-write-a-scripting-language.md @@ -17,14 +17,14 @@ Examples of some scripting lagnauges: - Perl - PHP -Examples of some less useful and smaller langauges: +Examples of some less useful and smaller languages: - [Trumpscript](https://github.com/samshadwell/TrumpScript) - [Brainfuck](https://github.com/redevined/brainfuck) - [Piet](http://www.dangermouse.net/esoteric/piet.html) -Here's this week's challenge. Write a langauge! +Here's this week's challenge. Write a language! - Give it a name - Give it an extension `(.txt, .py, .s)` @@ -35,4 +35,4 @@ Your scripting language should be able to do the following: - Display a green rectangle (anyway you can) - Compute FizzBuzz -You can do this any way you wish. The more creative the better! +You may do this any way you wish. The more creative the better! From 7a34e8491e99a0a7e02094799b38d0edfa06cea6 Mon Sep 17 00:00:00 2001 From: David Nuon Date: Sat, 27 Feb 2016 14:24:16 -0800 Subject: [PATCH 3/3] Update 2016-02-26-write-a-scripting-language.md --- _posts/challenges/2016-02-26-write-a-scripting-language.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/challenges/2016-02-26-write-a-scripting-language.md b/_posts/challenges/2016-02-26-write-a-scripting-language.md index 9b6e09f..2c6d7ec 100644 --- a/_posts/challenges/2016-02-26-write-a-scripting-language.md +++ b/_posts/challenges/2016-02-26-write-a-scripting-language.md @@ -9,7 +9,7 @@ permalink: /challenges/write-a-scripting-language Writing your own scripting language is a fun challenge and a good exercise. If you ever wanted to write your own "perfect" language, now's your chance! -Examples of some scripting lagnauges: +Examples of some scripting languages: - Bash - Python - Javascript