index
:
rust
master
Unnamed repository; edit this file 'description' to name the repository.
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
test
/
run-pass
/
spawn.rs
blob: 765d4c9e25af0ee4d0eda3b1b270746b5862f5dc (
plain
) (
blame
)
1
2
3
4
5
6
7
8
9
10
// -*- rust -*-
fn
main
()
{
spawn
child
(
10
);
}
fn
child
(
int
i
)
{
log
i
;
}