all tasks

This commit is contained in:
Ingy döt Net 2013-04-11 01:07:29 -07:00
parent b83f433714
commit 68f8f3e56b
14735 changed files with 178959 additions and 0 deletions

View file

@ -0,0 +1,2 @@
a = 1 # Here we declare a numeric variable
fruit = "banana" # Here we declare a string datatype

View file

@ -0,0 +1 @@
x = y = z = 3

View file

@ -0,0 +1,7 @@
function foo(j k) {
# j is an argument passed from caller
# k is a dummy not passed by caller, but because it is in the
# argument list, it will have a scope local to the function
k = length(j)
print j "contains " k " characters"
}