-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist
75 lines (59 loc) · 1.03 KB
/
list
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
python{
sourcefile: hw.py
command: python <sourcefile>
}
python3{
sourcefile: hw.3.py
command: python3 <sourcefile>
}
ruby{
sourcefile: hw.rb
command: ruby <sourcefile>
}
java{
sourcefile: hw.java
compile: javac -d ../bin <sourcefile>
run: java -cp ../bin hw
}
c{
sourcefile: hw.c
compile: gcc -o ../bin/chw <sourcefile>
run: ../bin/chw
}
c++{
sourcefile: hw.cpp
compile: g++ -o ../bin/cpphw <sourcefile>
run: ../bin/cpphw
}
fortran{
sourcefile: hw.f
compile: gfortran -o ../bin/fhw <sourcefile>
run: ../bin/fhw
}
fortran90{
sourcefile: hw.f90
compile: gfortran -o ../bin/f90hw <sourcefile>
run: ../bin/f90hw
}
R{
sourcefile: hw.R
command: Rscript <sourcefile>
}
lisp{
sourcefile: hw.lsp
command: clisp <sourcefile>
}
javascript{
sourcefile: hw.js
markupfile: file:///root/Documents/Personal/Operations/Computers/worldofhellos/source/hw.js.html
}
c#{
sourcefile: hw.cs
compile: csc -out:../bin/hw.exe <sourcefile>
run: mono ../bin/hw.exe
}
cobol{
sourcefile: hw.cbl
compile: cobc -free -x -o ../bin/cblhw <sourcefile>
run: ../bin/cblhw
}