Add rust and perl
This commit is contained in:
parent
7ecf637b86
commit
19624452a5
3
perl.pl
Normal file
3
perl.pl
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
for (my $i = 0; $i < 6; $i++) {
|
||||||
|
print "Hello world, $i\n";
|
||||||
|
}
|
5
rust.rs
Normal file
5
rust.rs
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
fn main() {
|
||||||
|
for i in 0..6 {
|
||||||
|
println!("Hello world, {}", i);
|
||||||
|
}
|
||||||
|
}
|
2
vals.csv
2
vals.csv
@ -1,7 +1,9 @@
|
|||||||
Language,Time (ms)
|
Language,Time (ms)
|
||||||
C,1
|
C,1
|
||||||
|
Rust,1
|
||||||
POSIX Shell,1
|
POSIX Shell,1
|
||||||
Bash,2
|
Bash,2
|
||||||
|
Perl,2
|
||||||
Python,10
|
Python,10
|
||||||
Go build,1
|
Go build,1
|
||||||
Go run,92
|
Go run,92
|
||||||
|
|
Reference in New Issue
Block a user