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