Raptorian IDE

5+
Downloads
Content rating
Everyone
Screenshot image
Screenshot image
Screenshot image
Screenshot image
Screenshot image
Screenshot image
Screenshot image
Screenshot image
Screenshot image
Screenshot image
Screenshot image
Screenshot image

About this app

Raptorian is a unique multilingual, interpreted, high-level object-oriented programming language designed for educational purposes to lower the barrier to entry for beginners, with an emphasis on intuitive, clear, and modular programming. The language supports key features of modern programming languages, including strong typing, classes, functions, and convenient control of program flow.
Kazakh Docu: https://drive.google.com/file/d/1GUUfW41a9ktzWlEAEuyIYEhv7AMV8a-F/view?usp=sharing
Documentation: https://drive.google.com/drive/folders/1vIOmk_-vXIRMTHyisg4rxUxhtVVuvgb_?usp=sharing


Code Editor, Mobile Code Editor, Code IDE, Mobile Code IDE, IDE, Integrated development environment
Updated on
Jan 7, 2024

Data safety

Safety starts with understanding how developers collect and share your data. Data privacy and security practices may vary based on your use, region, and age. The developer provided this information and may update it over time.
No data shared with third parties
Learn more about how developers declare sharing
No data collected
Learn more about how developers declare collection

What's new

String methods

1) length
2) trim()
3) trimStart()
4) trimEnd()
5) replace(old: String, new: String, ignoreCase: Boolean = false)
6) isEmpty()
7) isNotEmpty()
8) isBlack()
9) isNotBlack()
10) contains(other: String)
11) substr(start: Int, length: Int)
12) subString(startIndex: Int, endIndex: Int)

Additional changes:
13) for loop that iterates over string :
for(i in "some_string") {}

14) UI/UX improvements when using Shift+Ctrl+(⬅️➡️)

15) Updated documentation for String.