Category:Ayrch: Difference between revisions

no edit summary
No edit summary
No edit summary
 
(7 intermediate revisions by the same user not shown)
Line 1:
{{stub}}{{language|Ultimate++
|exec=machine
|site=https://www.ultimatepp.org/www$uppweb$overview$en-us.html/
|safety=both
|gc=no
Line 14 ⟶ 15:
 
 
'''Ultimate++''' is a rapid application development framework created by the '''U++ Team''' that combines [[C]] and [[C++]] into its own unique language. Ultimate++ goes by the names of U++ and Upp and the authored by the '''Miroslav (Mirek) Fidler'''. The purpose of Ultimate++ is to reduce code complexity.
 
The Ultimate++ is easy to install and self-contained inside a integrated development environment simply called '''TheIDE'''. The framework installs on all the major operating systems and even minor ones.
 
https://www.ultimatepp.org/www$uppweb$overview$en-us.html
Line 40 ⟶ 41:
}
</lang>
 
{{out}}
 
<pre>
Hello World
and Hello World
<--- Finished in (0:00.20), exitcode: 0 --->
</pre>
 
<big>'''A+B B-A'''</big> &nbsp;
 
<lang Cpp>
#include <Core/Core.h>
#include <stdio.h>
#include <iostream>
 
using namespace Upp;
 
CONSOLE_APP_MAIN
{
int a, b;
a = 2, b = 7;
printf("%d + %d = %d\n\n",a,b, a + b);
std::cout << b << " - " << a << " = " << b - a << std::endl;
std::cout << std::endl;
const Vector<String>& cmdline = CommandLine();
for(int i = 0; i < cmdline.GetCount(); i++) {
}
}
</lang>
 
{{out}}
 
<pre>
2 + 7 = 9
 
7 - 2 = 5
 
<--- Finished in (0:00.07), exitcode: 0 --->
</pre>
 
 
<big>'''Conditional loop'''</big>
 
<lang Cpp>
#include <Core/Core.h>
#include <stdio.h>
#include <iostream>
 
using namespace Upp;
 
CONSOLE_APP_MAIN
{
int a, b, i;
i = 0, a = 2, b = 7;
while(a < (b + 1)){
i = i + a;
printf("a = %d and i = %d\n",a,i);
printf("%d + %d = %d\n\n",a,b, a + b);
std::cout << b << " - " << a << " = " << b - a << std::endl;
std::cout << std::endl;
a = a + 1;
 
}
const Vector<String>& cmdline = CommandLine();
for(int i = 0; i < cmdline.GetCount(); i++) {
}
}
</lang>
 
 
 
==Versions==