Skip to content

Releases: joip1/rC

rC v1.9.15

23 Apr 22:56
Compare
Choose a tag to compare

Added functions, new methods and threading
Added while loops and case matching
Added define and include

rC 1.9.1

17 Apr 15:12
Compare
Choose a tag to compare
v1.9.1

fix error in strToNum element

rC v1.8

24 Mar 20:52
Compare
Choose a tag to compare
Merge branch 'master' of https://github.com/RodrigoCabaco/rC

rC v1.7

11 Nov 15:19
cb9daf3
Compare
Choose a tag to compare

Added
UpdateStrListValue(MyList[0]) -> to change list values
MyList.IndexOf:"Dogs" to:x -> Gets the Index of Dogs and assigns it to numX

rC v1.6

10 Nov 18:30
a82312b
Compare
Choose a tag to compare

New Syntax:

Write &>hi<& is now Write "Hi"

Writing Variables is now (example) : WriteStr {String1,String2}

rC v1.5

09 Nov 15:01
a82312b
Compare
Choose a tag to compare

Added getSplit:
usage:
import split

str x >>Hello, I will be splitted!
str y >>
getSplit from:x to:y index:1 separator:"I will be "
WriteStr &>y<&

output:
splitted!

compile_lines_from_file new syntax: method_file file:FileName first:firstLineIndex last:LastLineIndex
method_file file:fileName content:all

rC v1.3.1

23 Oct 13:45
08a9085
Compare
Choose a tag to compare
Add files via upload

rC v1.2

22 Oct 10:13
a8d50de
Compare
Choose a tag to compare

1.2
Added arg support: arg1, arg2, arg3 (str values)

rC

15 Oct 07:50
f9a8533
Compare
Choose a tag to compare

Review Wiki.
Added FileStream:

import filestream
CreateFile file:filename.filextension
DeleteFile file:filename.filextension
ReadFile file:filename.filextension str: <---- Str to assign the value it reads to
WriteToFile file:filename.filextension content:What its going to write