Skip to content

Commit 6c8b16c

Browse files
add helloworld in matlab and delphi
1 parent ac3146a commit 6c8b16c

File tree

4 files changed

+27
-0
lines changed

4 files changed

+27
-0
lines changed

Delphi/hello.pas

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
program HelloWorld;
2+
begin
3+
WriteLn('Hello World');
4+
end.

Delphi/readme.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Delphi Hello World
2+
3+
Delphi is both an object-oriented programming language and an integrated development environment (IDE) for this language.
4+
5+
# run the program
6+
7+
you need to install Scala .
8+
9+
you need to install Matlab, you need a license but you get a free product trial here : [https://www.embarcadero.com/products/delphi](https://www.embarcadero.com/products/delphi)

Matlab/hello.m

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
disp('Hello World');

Matlab/readme.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Matlab Hello World
2+
3+
MATLAB is a scripting language emulated by a development environment of the same name, it is used for numerical computation purposes. MATLAB allows you to manipulate matrices, display curves and data, implement algorithms, create user interfaces, and can interface with other languages ​​such as C, C++, Java, and Fortran.
4+
5+
# run the program
6+
7+
you need to install Matlab, you need a license but you get a free product trial here : [https://fr.mathworks.com/campaigns/products/trials.html?s_eid=PSM_15028](https://fr.mathworks.com/campaigns/products/trials.html?s_eid=PSM_15028).
8+
9+
for run the program, you can use the command for compiling :
10+
11+
```
12+
run(hello.m)
13+
```

0 commit comments

Comments
 (0)