examples: reorganize
parent
e57804e6c2
commit
a5c0d89c71
|
@ -1,23 +1,19 @@
|
|||
/cli
|
||||
/hello_world
|
||||
/fibonacci
|
||||
/fizz_buzz
|
||||
/hanoi
|
||||
/hello_v_js
|
||||
/hello_world
|
||||
/json
|
||||
/links_scraper
|
||||
/log
|
||||
/news_fetcher
|
||||
/rune
|
||||
/terminal_control
|
||||
/nbody
|
||||
/spectral
|
||||
/database/mysql
|
||||
/hello_v_js
|
||||
/fibonacci
|
||||
/sqlite
|
||||
/news_fetcher
|
||||
/path_tracing
|
||||
/gg2
|
||||
/quick_sort
|
||||
/random_ips
|
||||
/rune
|
||||
/spectral
|
||||
/terminal_control
|
||||
|
||||
*.ppm
|
||||
empty_gg_freetype
|
||||
game_of_life/life_gg
|
||||
random_ips
|
||||
vweb/vweb_example
|
||||
x64/hello_world
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
mysql
|
||||
sqlite
|
|
@ -1,21 +1,18 @@
|
|||
fn main() {
|
||||
mut s := ''
|
||||
|
||||
for n in 1..101 {
|
||||
if n % 3 == 0 {
|
||||
s += 'Fizz'
|
||||
}
|
||||
|
||||
if n % 5 == 0 {
|
||||
s += 'Buzz'
|
||||
}
|
||||
|
||||
if s == '' {
|
||||
println(n)
|
||||
} else {
|
||||
println(s)
|
||||
}
|
||||
|
||||
s = ''
|
||||
}
|
||||
mut s := ''
|
||||
for n in 1 .. 101 {
|
||||
if n % 3 == 0 {
|
||||
s += 'Fizz'
|
||||
}
|
||||
if n % 5 == 0 {
|
||||
s += 'Buzz'
|
||||
}
|
||||
if s == '' {
|
||||
println(n)
|
||||
}
|
||||
else {
|
||||
println(s)
|
||||
}
|
||||
s = ''
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1 +1,2 @@
|
|||
life
|
||||
life_gg
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
/gg_freetype
|
||||
/gg2
|
|
@ -1,5 +1,5 @@
|
|||
fn main() {
|
||||
for i in 0..3 {
|
||||
println('Hello from V.js')
|
||||
}
|
||||
for i in 0 .. 3 {
|
||||
println('Hello from V.js')
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,2 +1 @@
|
|||
println('Hello, World!')
|
||||
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
main
|
|
@ -0,0 +1 @@
|
|||
tvintris
|
|
@ -1 +1 @@
|
|||
test_app
|
||||
vweb_example
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
hello_world
|
Loading…
Reference in New Issue