Hi! if you are actually reading this thing, I congratulate you. anyway, I have just started working on the scripting, and here is kind of what i want (in order)
- To have the scripts actually work
- be able to declare subroutines
- conditional tests (AKA
if
) - looping (
while
/for
/foreach
) (who needsuntil
???) - type definitions (telling it that
a
is a number, etc...) - maybe functions. (if i feel like doing a ton of work)
- who knows
an example of a very roundabout script is below:
# this program prints hello 3 times, in a much more complex way than it needs to be.
SUBROUTINE say: $arg $amount # declare "hi" with 2 parameters
amount->int # tell it that amount is an integer
FOR $i=0 $i<$amount $i++ # for loop
echo $i # actually echo it
END FOR # end the for loop
END SUBROUTINE say # end the subroutine
SUBROUTINE main # main sub
say: Hello 3 # call say with Hello and 3
END SUBROUTINE main
main:
as you can probably tell, "#" is a comment.
it will not be case-sensitive, as practically nothing about windows is, (environment variables,
file names, etc...) so (in my opinion) it makes sense to have keywords be too. indentation wont matter,
but is there too look nice. :
is required to call a subroutine, with parameters behind, seperated by
whitespace. ALL VARIABLES must be prefixed by $
, including parameters. as with normal commands,
to pass a parameter with spaces/tabs/any whitespace, use quotes.