diff --git a/balloon/lib/basics.nas b/balloon/lib/basics.nas deleted file mode 100644 index 0ad02c3..0000000 --- a/balloon/lib/basics.nas +++ /dev/null @@ -1,66 +0,0 @@ -# this file includes basic operation functions: -# append -# subvec -# int -# num -# made by github user: ValKmjolnir - -# append is used to add a new var into an array/vector -var append=func(vector,elements...) -{ - return __call_special_inline_function(vector,elements); -}; - -# subvec is used to get a new array from an exist array -var subvec=func(vector,begin,length) -{ - var new_vector=[]; - for(var i=begin;i