Svoboda | Graniru | BBC Russia | Golosameriki | Facebook

To install click the Add extension button. That's it.

The source code for the WIKI 2 extension is being checked by specialists of the Mozilla Foundation, Google, and Apple. You could also do it yourself at any point in time.

4,5
Kelly Slayton
Congratulations on this excellent venture… what a great idea!
Alexander Grigorievskiy
I use WIKI 2 every day and almost forgot how the original Wikipedia looks like.
Live Statistics
English Articles
Improved in 24 Hours
Added in 24 Hours
Languages
Recent
Show all languages
What we do. Every page goes through several hundred of perfecting techniques; in live mode. Quite the same Wikipedia. Just better.
.
Leo
Newton
Brights
Milds

From Wikipedia, the free encyclopedia

Ubercode is a high level programming language designed by Ubercode Software and released in 2005 for Microsoft Windows. Ubercode is influenced by Eiffel and BASIC. It is proprietary software and can be tried out for free for 30 days. Ubercode has the following design goals:

  1. Compilable language—compiled into Windows EXE files.
  2. Automatic memory management—memory is allocated / freed automatically, and the language has no memory management primitives.
  3. Pre and post conditions—these are run-time assertions which are attached to function declarations, as in Eiffel.
  4. High-level data types—resizable arrays, lists and tables may contain arbitrary components.
  5. Integrated file handling—primitives for transparent handling of text, binary, CSV, XML and dBase files.
  6. Ease of use—language structure is relatively simple, making the language accessible to beginners.

Hello, World!

Here is the basic "Hello, World!" program:

  Ubercode 1 class Hello

  public function main()
  code
    call Msgbox("Hello", "Hello World!")
  end function

  end class

Preconditions and Postconditions

Here is an example using pre- and postconditions. In the example, the IntToStr function validates its input as a string before converting it to an integer:

  Ubercode 1 class PrePost

  function IntToStr(in mystr:string[*] out value:integer)
  precond IsDigitStr(mystr)
  code
    call Val(mystr, value)
  end function

  public function main()
  code
    call Msgbox("OOP example", "IntToStr(10) = " + IntToStr("10"))
  end function

  end class

External links


This page was last edited on 13 April 2023, at 09:19
Basis of this page is in Wikipedia. Text is available under the CC BY-SA 3.0 Unported License. Non-text media are available under their specified licenses. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc. WIKI 2 is an independent company and has no affiliation with Wikimedia Foundation.