You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@
13
13
14
14
##Intro
15
15
16
-
RoyalScript is a functional programming languag that aims to combine the utility of popular functional programming languages with the mutable data structures found in object oriented languages. The language is also quickly compiled to compressed JavaScript, so it can be run in the browser, without having to download anything on your computer. Lastly, RoyalScript is also inter-operable with javascript functions. You can call native javascript functions from RoyalScirpt as well!
16
+
RoyalScript is a functional programming language that aims to combine the utility of popular functional programming languages with the mutable data structures found in object oriented languages. The language is also quickly compiled to compressed JavaScript, so it can be run in the browser, without having to download anything on your computer. Lastly, RoyalScript is also inter-operable with javascript functions. You can call native javascript functions from RoyalScript as well!
17
17
18
18
RoyalScript is a both a compiled or interpreted language, this depends on the javascript environment that RoyalScript is run in.
19
19
@@ -41,7 +41,7 @@ You can also use the `Main.Compile` function in your node programs.
41
41
42
42
##Computational Functions
43
43
44
-
The major difference between RoyalScript and other functional languags lik Scheme is that RoyalScript functions do not *always* evaluate to some resulting value. They do not always return a value. Some functions, such as the `for` function loops over some list of values. Another example is the
44
+
The major difference between RoyalScript and other functional languags like Scheme is that RoyalScript functions do not *always* evaluate to some resulting value. They do not always return a value. Some functions, such as the `for` function loops over some list of values. Another example is the (Missing).
45
45
46
46
RoyalScript is meant to offer more options for computation than just recursion, although recursion is definitely usable.
47
47
@@ -56,7 +56,7 @@ In RoyalScript, all statements abide by a concise function syntax as follows
@@ -92,7 +92,7 @@ RoyalScript has 5 primitive types
92
92
93
93
Additionally, the null type exists to represent a *none* or *void* type present in many other languages.
94
94
95
-
Strings in RoyalScript are implemented with backtick barriers, \`, as opposed to quotes \" with most languages. This is primarily due to the optimized method of parsing RoyalScript, which will be explained in another section.
95
+
Strings in RoyalScript are implemented with backtick barriers, \`, as opposed to quotes " with most languages. This is primarily due to the optimized method of parsing RoyalScript, which will be explained in another section.
0 commit comments