forked from vehbican/Integrated-Assignment-Environment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommands.txt
34 lines (26 loc) · 1.41 KB
/
Commands.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
C
------------------------------------------------------------------------------------------------
gcc -o main.exe main.c
------------------------------------------------------------------------------------------------
C++
------------------------------------------------------------------------------------------------
g++ -o main.exe main.cpp
------------------------------------------------------------------------------------------------
C#
------------------------------------------------------------------------------------------------
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\csc.exe /out:main.exe main.cs
------------------------------------------------------------------------------------------------
JAVA
------------------------------------------------------------------------------------------------
javac main.java
java main.java
------------------------------------------------------------------------------------------------
PYTHON
------------------------------------------------------------------------------------------------
python main.py a c b e d g f
------------------------------------------------------------------------------------------------
ASSEMBLY
------------------------------------------------------------------------------------------------
$ gcc -m32 -c myfunc.s
$ gcc -m32 -o myprog myfunc.o main.c
------------------------------------------------------------------------------------------------