Ubercode is a programming language created in 2005.
#2955on PLDB | 19Years Old |
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 commercial software and can be tried out for free for 30 days. Read more on Wikipedia...
Ubercode 1 class HelloWorld
public function Main()
code
call Msgbox("Hello World", "My first program", "OK")
end function
end class
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
Feature | Supported | Example | Token |
---|---|---|---|
Strings | ✓ | "Hello world" | " |