├── jan26 ├── file │ ├── hello.txt │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── fileread │ ├── hello.txt │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── fileread2 │ ├── hello.txt │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── panic2 │ ├── src │ │ └── main.rs │ └── Cargo.toml ├── hash │ └── Cargo.toml ├── hash2 │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── panic │ └── Cargo.toml ├── revise │ └── Cargo.toml └── encrypt │ ├── Cargo.toml │ └── src │ └── main.rs ├── jan05 ├── enum1 │ ├── target │ │ └── rls │ │ │ └── debug │ │ │ ├── .cargo-lock │ │ │ ├── deps │ │ │ ├── libenum1-1a6eafb5bb735a93.rmeta │ │ │ ├── libenum1-4caa6f8ba5b4ec87.rmeta │ │ │ ├── libenum1-4f9ce1b0c4e59e7e.rmeta │ │ │ ├── libenum1-d23646d1de3895ce.rmeta │ │ │ ├── enum1-1a6eafb5bb735a93.d │ │ │ ├── enum1-4caa6f8ba5b4ec87.d │ │ │ ├── enum1-4f9ce1b0c4e59e7e.d │ │ │ └── enum1-d23646d1de3895ce.d │ │ │ ├── incremental │ │ │ ├── enum1-25ltdcke0hzrx │ │ │ │ ├── s-fjhthf351l-1mdoecz.lock │ │ │ │ └── s-fjhthf351l-1mdoecz-ag6xg07mcwdn │ │ │ │ │ ├── work-products.bin │ │ │ │ │ ├── dep-graph.bin │ │ │ │ │ └── query-cache.bin │ │ │ ├── enum1-28vqqr49b0uin │ │ │ │ ├── s-fjlxreels2-18q71ap.lock │ │ │ │ ├── s-fjlxrk0brm-a731bk.lock │ │ │ │ ├── s-fjlxreels2-18q71ap-working │ │ │ │ │ ├── work-products.bin │ │ │ │ │ ├── dep-graph.bin │ │ │ │ │ └── query-cache.bin │ │ │ │ └── s-fjlxrk0brm-a731bk-1ljxsfs9j1h1f │ │ │ │ │ ├── work-products.bin │ │ │ │ │ ├── dep-graph.bin │ │ │ │ │ └── query-cache.bin │ │ │ ├── enum1-32a6bsrgv4zgb │ │ │ │ ├── s-fjlxregnfl-1w2w0af.lock │ │ │ │ ├── s-fjlxrk32kj-1si8n22.lock │ │ │ │ ├── s-fjlxregnfl-1w2w0af-working │ │ │ │ │ ├── work-products.bin │ │ │ │ │ ├── dep-graph.bin │ │ │ │ │ └── query-cache.bin │ │ │ │ └── s-fjlxrk32kj-1si8n22-1vtfyytxb05ak │ │ │ │ │ ├── work-products.bin │ │ │ │ │ ├── dep-graph.bin │ │ │ │ │ └── query-cache.bin │ │ │ └── enum1-3axlrcbj5cyk6 │ │ │ │ ├── s-fjhthew83r-1g04uf9.lock │ │ │ │ └── s-fjhthew83r-1g04uf9-3eedswggrmmwz │ │ │ │ ├── work-products.bin │ │ │ │ ├── dep-graph.bin │ │ │ │ └── query-cache.bin │ │ │ └── .fingerprint │ │ │ ├── enum1-4caa6f8ba5b4ec87 │ │ │ ├── bin-enum1-4caa6f8ba5b4ec87 │ │ │ ├── dep-bin-enum1-4caa6f8ba5b4ec87 │ │ │ ├── invoked.timestamp │ │ │ └── bin-enum1-4caa6f8ba5b4ec87.json │ │ │ ├── enum1-d23646d1de3895ce │ │ │ ├── bin-enum1-d23646d1de3895ce │ │ │ ├── dep-bin-enum1-d23646d1de3895ce │ │ │ ├── invoked.timestamp │ │ │ └── bin-enum1-d23646d1de3895ce.json │ │ │ ├── enum1-1a6eafb5bb735a93 │ │ │ ├── dep-test-bin-enum1-1a6eafb5bb735a93 │ │ │ ├── test-bin-enum1-1a6eafb5bb735a93 │ │ │ ├── invoked.timestamp │ │ │ └── test-bin-enum1-1a6eafb5bb735a93.json │ │ │ └── enum1-4f9ce1b0c4e59e7e │ │ │ ├── dep-test-bin-enum1-4f9ce1b0c4e59e7e │ │ │ ├── test-bin-enum1-4f9ce1b0c4e59e7e │ │ │ ├── invoked.timestamp │ │ │ └── test-bin-enum1-4f9ce1b0c4e59e7e.json │ ├── Cargo.toml │ └── Cargo.lock ├── option │ ├── Cargo.toml │ └── src │ │ └── main.rs └── optionpreplude │ └── Cargo.toml ├── online ├── 11apr │ ├── dice │ │ ├── target │ │ │ ├── debug │ │ │ │ ├── .cargo-lock │ │ │ │ ├── build │ │ │ │ │ ├── libc-080a32e0ba3d7568 │ │ │ │ │ │ ├── stderr │ │ │ │ │ │ ├── invoked.timestamp │ │ │ │ │ │ ├── root-output │ │ │ │ │ │ └── output │ │ │ │ │ ├── rand-39a3e59d1559ed96 │ │ │ │ │ │ ├── stderr │ │ │ │ │ │ ├── invoked.timestamp │ │ │ │ │ │ ├── root-output │ │ │ │ │ │ ├── output │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── probe0.ll │ │ │ │ │ ├── rand_chacha-6d3af2a48b82d1f1 │ │ │ │ │ │ ├── stderr │ │ │ │ │ │ ├── invoked.timestamp │ │ │ │ │ │ ├── output │ │ │ │ │ │ ├── root-output │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── probe0.ll │ │ │ │ │ ├── rand_pcg-6c105b2d74e471fd │ │ │ │ │ │ ├── stderr │ │ │ │ │ │ ├── invoked.timestamp │ │ │ │ │ │ ├── output │ │ │ │ │ │ ├── root-output │ │ │ │ │ │ └── out │ │ │ │ │ │ │ └── probe0.ll │ │ │ │ │ ├── libc-92f63d88abbc9702 │ │ │ │ │ │ ├── build-script-build │ │ │ │ │ │ ├── build_script_build-92f63d88abbc9702 │ │ │ │ │ │ └── build_script_build-92f63d88abbc9702.d │ │ │ │ │ ├── rand-e20a05f02a4f869b │ │ │ │ │ │ ├── build-script-build │ │ │ │ │ │ ├── build_script_build-e20a05f02a4f869b │ │ │ │ │ │ └── build_script_build-e20a05f02a4f869b.d │ │ │ │ │ ├── rand_pcg-89b9588bdd1cef19 │ │ │ │ │ │ ├── build-script-build │ │ │ │ │ │ ├── build_script_build-89b9588bdd1cef19 │ │ │ │ │ │ └── build_script_build-89b9588bdd1cef19.d │ │ │ │ │ └── rand_chacha-11fcddb36ce71f77 │ │ │ │ │ │ ├── build-script-build │ │ │ │ │ │ ├── build_script_build-11fcddb36ce71f77 │ │ │ │ │ │ └── build_script_build-11fcddb36ce71f77.d │ │ │ │ ├── incremental │ │ │ │ │ ├── dice-255rlx95aqevp │ │ │ │ │ │ ├── s-fmc45ize3g-10xxpbm.lock │ │ │ │ │ │ └── s-fmc45ize3g-10xxpbm-vpkirhmuizfc │ │ │ │ │ │ │ ├── dep-graph.bin │ │ │ │ │ │ │ ├── query-cache.bin │ │ │ │ │ │ │ ├── 8r50mkfrjxuh07l.o │ │ │ │ │ │ │ ├── a2a0qsl17epkalq.o │ │ │ │ │ │ │ ├── work-products.bin │ │ │ │ │ │ │ ├── 19wu793gio5sdbo9.o │ │ │ │ │ │ │ ├── 1qidbf4r30hf09bl.o │ │ │ │ │ │ │ ├── 1zoj8ai48we65zig.o │ │ │ │ │ │ │ ├── 2gid72xdlukoljmv.o │ │ │ │ │ │ │ ├── 3c196nfru1p3vgks.o │ │ │ │ │ │ │ ├── 3e6curmh4nutj3kk.o │ │ │ │ │ │ │ ├── 3rtczfdvux7b7f2c.o │ │ │ │ │ │ │ ├── 3wgjbictrh0jnymq.o │ │ │ │ │ │ │ ├── 4dj04fnr8wcso9f7.o │ │ │ │ │ │ │ ├── 4rvbssu79yhoc6qj.o │ │ │ │ │ │ │ ├── 57iohnqp1cnw95o8.o │ │ │ │ │ │ │ ├── 5c48v7bcp7du1jh7.o │ │ │ │ │ │ │ ├── 5eu68n8k3zsz5b0n.o │ │ │ │ │ │ │ ├── 8r50mkfrjxuh07l.bc.z │ │ │ │ │ │ │ ├── a2a0qsl17epkalq.bc.z │ │ │ │ │ │ │ ├── 19wu793gio5sdbo9.bc.z │ │ │ │ │ │ │ ├── 1qidbf4r30hf09bl.bc.z │ │ │ │ │ │ │ ├── 1zoj8ai48we65zig.bc.z │ │ │ │ │ │ │ ├── 2gid72xdlukoljmv.bc.z │ │ │ │ │ │ │ ├── 3c196nfru1p3vgks.bc.z │ │ │ │ │ │ │ ├── 3e6curmh4nutj3kk.bc.z │ │ │ │ │ │ │ ├── 3rtczfdvux7b7f2c.bc.z │ │ │ │ │ │ │ ├── 3wgjbictrh0jnymq.bc.z │ │ │ │ │ │ │ ├── 4dj04fnr8wcso9f7.bc.z │ │ │ │ │ │ │ ├── 4rvbssu79yhoc6qj.bc.z │ │ │ │ │ │ │ ├── 57iohnqp1cnw95o8.bc.z │ │ │ │ │ │ │ ├── 5c48v7bcp7du1jh7.bc.z │ │ │ │ │ │ │ └── 5eu68n8k3zsz5b0n.bc.z │ │ │ │ │ ├── dice-3cp0s4422xzp2 │ │ │ │ │ │ ├── s-fmc2tc1yo3-18tck4t.lock │ │ │ │ │ │ └── s-fmc2tc1yo3-18tck4t-65ywtffhphsh │ │ │ │ │ │ │ ├── dep-graph.bin │ │ │ │ │ │ │ ├── query-cache.bin │ │ │ │ │ │ │ ├── a479nbwdeeuyizp.o │ │ │ │ │ │ │ ├── tgrarxqq47h5udf.o │ │ │ │ │ │ │ ├── tqg5xs6xxmf14x0.o │ │ │ │ │ │ │ ├── work-products.bin │ │ │ │ │ │ │ ├── zqrxympiw7p2cwj.o │ │ │ │ │ │ │ ├── 18q1qz29nxm9ncyl.o │ │ │ │ │ │ │ ├── 1bh8566b3dsm163d.o │ │ │ │ │ │ │ ├── 2id9r4dwlfqwx4nx.o │ │ │ │ │ │ │ ├── 2wwbauhjmpweexzl.o │ │ │ │ │ │ │ ├── 39uep751m8xxk72h.o │ │ │ │ │ │ │ ├── 3dotew999z99vji0.o │ │ │ │ │ │ │ ├── 45dkp6rcygfwnogo.o │ │ │ │ │ │ │ └── 4mjno6zumrrev94b.o │ │ │ │ │ └── dice-3mylnbnvjmn02 │ │ │ │ │ │ ├── s-fmc461chqw-f6ib49.lock │ │ │ │ │ │ └── s-fmc461chqw-f6ib49-14eykjl1tut2b │ │ │ │ │ │ ├── dep-graph.bin │ │ │ │ │ │ ├── query-cache.bin │ │ │ │ │ │ ├── e4mjgx0ncyo5hzd.o │ │ │ │ │ │ ├── iulsy1t2zvxegxh.o │ │ │ │ │ │ ├── o9sbvbgj6kn39bl.o │ │ │ │ │ │ ├── ri6fvex121xqmj6.o │ │ │ │ │ │ ├── ssuc5rgqxfjtlxw.o │ │ │ │ │ │ ├── tyyhh3j9wpitsqw.o │ │ │ │ │ │ ├── vm655eno3d65ikv.o │ │ │ │ │ │ ├── work-products.bin │ │ │ │ │ │ ├── x8665tiuqoe5p50.o │ │ │ │ │ │ ├── xq1wt2sz09uh2pq.o │ │ │ │ │ │ ├── yjfe8mtauty4cf1.o │ │ │ │ │ │ ├── zptmb8bjwwwmsta.o │ │ │ │ │ │ ├── 10cands2amnbw3vv.o │ │ │ │ │ │ ├── 13b38gitrnpdsvyr.o │ │ │ │ │ │ ├── 1ulu0lxkbpgj842d.o │ │ │ │ │ │ ├── 1v1alqb72y7dt20b.o │ │ │ │ │ │ ├── 1xeiea4c20p1g5pg.o │ │ │ │ │ │ ├── 1xmqikt6gjifmfg6.o │ │ │ │ │ │ ├── 21o9rir8hopr48gm.o │ │ │ │ │ │ ├── 29bu5swbyy0zkwvq.o │ │ │ │ │ │ ├── 2h9vm8d0d2wytepf.o │ │ │ │ │ │ ├── 2kjvxy20toei2lhu.o │ │ │ │ │ │ ├── 35t23kq5eqs7ln1l.o │ │ │ │ │ │ ├── 3b59s58umsfy1r9h.o │ │ │ │ │ │ ├── 3ef0sysr6bdq3yii.o │ │ │ │ │ │ ├── 3fjbjyaihac011nb.o │ │ │ │ │ │ ├── 3ggjusom80q0dogw.o │ │ │ │ │ │ ├── 3nuyfsizodoy7zps.o │ │ │ │ │ │ ├── 3qln3x89pv64ackm.o │ │ │ │ │ │ ├── 3t1csf3t9rq73j6m.o │ │ │ │ │ │ ├── 3x34u0540gkaoli0.o │ │ │ │ │ │ ├── 454nr7s4w0oukzjh.o │ │ │ │ │ │ ├── 49pj7euewu6r9fvj.o │ │ │ │ │ │ ├── 4gna40g7jl16kcdp.o │ │ │ │ │ │ ├── 4oencdeo6gt8yqau.o │ │ │ │ │ │ ├── 4uiyopzh4u147lkp.o │ │ │ │ │ │ ├── 4xmgq04uv5207axh.o │ │ │ │ │ │ ├── 4yvzufn276p53kv3.o │ │ │ │ │ │ ├── 4zg0cl3g2li1zfta.o │ │ │ │ │ │ ├── 50dhos8zd9freemu.o │ │ │ │ │ │ ├── 554pzlh9ur9npc5m.o │ │ │ │ │ │ ├── 56yhwn232vs489ps.o │ │ │ │ │ │ ├── 5e2tis45wpqncbo1.o │ │ │ │ │ │ └── 5g9m3p8ri9h9fu3m.o │ │ │ │ ├── .fingerprint │ │ │ │ │ ├── libc-81b3ebe91fc7814e │ │ │ │ │ │ ├── dep-lib-libc-81b3ebe91fc7814e │ │ │ │ │ │ ├── lib-libc-81b3ebe91fc7814e │ │ │ │ │ │ ├── invoked.timestamp │ │ │ │ │ │ └── lib-libc-81b3ebe91fc7814e.json │ │ │ │ │ ├── rand-731b608ef4b0c191 │ │ │ │ │ │ ├── dep-lib-rand-731b608ef4b0c191 │ │ │ │ │ │ ├── lib-rand-731b608ef4b0c191 │ │ │ │ │ │ └── invoked.timestamp │ │ │ │ │ ├── autocfg-79cb8f5711b5481a │ │ │ │ │ │ ├── dep-lib-autocfg-79cb8f5711b5481a │ │ │ │ │ │ ├── lib-autocfg-79cb8f5711b5481a │ │ │ │ │ │ ├── invoked.timestamp │ │ │ │ │ │ └── lib-autocfg-79cb8f5711b5481a.json │ │ │ │ │ ├── rand_hc-de64eee1d3c2b3e3 │ │ │ │ │ │ ├── dep-lib-rand_hc-de64eee1d3c2b3e3 │ │ │ │ │ │ ├── lib-rand_hc-de64eee1d3c2b3e3 │ │ │ │ │ │ ├── invoked.timestamp │ │ │ │ │ │ └── lib-rand_hc-de64eee1d3c2b3e3.json │ │ │ │ │ ├── rand_os-3d3de5ad4384f6df │ │ │ │ │ │ ├── dep-lib-rand_os-3d3de5ad4384f6df │ │ │ │ │ │ ├── lib-rand_os-3d3de5ad4384f6df │ │ │ │ │ │ ├── invoked.timestamp │ │ │ │ │ │ └── lib-rand_os-3d3de5ad4384f6df.json │ │ │ │ │ ├── rand_pcg-7cfd0b92d80f3eb1 │ │ │ │ │ │ ├── dep-lib-rand_pcg-7cfd0b92d80f3eb1 │ │ │ │ │ │ ├── lib-rand_pcg-7cfd0b92d80f3eb1 │ │ │ │ │ │ ├── invoked.timestamp │ │ │ │ │ │ └── lib-rand_pcg-7cfd0b92d80f3eb1.json │ │ │ │ │ ├── dice-7ed4734a92a5e4ba │ │ │ │ │ │ ├── bin-dice-7ed4734a92a5e4ba │ │ │ │ │ │ ├── dep-bin-dice-7ed4734a92a5e4ba │ │ │ │ │ │ ├── invoked.timestamp │ │ │ │ │ │ └── bin-dice-7ed4734a92a5e4ba.json │ │ │ │ │ ├── dice-a1187a9306336900 │ │ │ │ │ │ ├── dep-lib-dice-a1187a9306336900 │ │ │ │ │ │ ├── lib-dice-a1187a9306336900 │ │ │ │ │ │ ├── invoked.timestamp │ │ │ │ │ │ └── lib-dice-a1187a9306336900.json │ │ │ │ │ ├── dice-d30886d5ca457a36 │ │ │ │ │ │ ├── bin-dice-d30886d5ca457a36 │ │ │ │ │ │ ├── dep-bin-dice-d30886d5ca457a36 │ │ │ │ │ │ ├── invoked.timestamp │ │ │ │ │ │ └── bin-dice-d30886d5ca457a36.json │ │ │ │ │ ├── rand_core-5466fae7cf5a8d1d │ │ │ │ │ │ ├── dep-lib-rand_core-5466fae7cf5a8d1d │ │ │ │ │ │ ├── lib-rand_core-5466fae7cf5a8d1d │ │ │ │ │ │ ├── invoked.timestamp │ │ │ │ │ │ └── lib-rand_core-5466fae7cf5a8d1d.json │ │ │ │ │ ├── rand_core-94dc1c6006443d6f │ │ │ │ │ │ ├── dep-lib-rand_core-94dc1c6006443d6f │ │ │ │ │ │ ├── lib-rand_core-94dc1c6006443d6f │ │ │ │ │ │ ├── invoked.timestamp │ │ │ │ │ │ └── lib-rand_core-94dc1c6006443d6f.json │ │ │ │ │ ├── rand_isaac-a09e4997930d9a7a │ │ │ │ │ │ ├── dep-lib-rand_isaac-a09e4997930d9a7a │ │ │ │ │ │ ├── lib-rand_isaac-a09e4997930d9a7a │ │ │ │ │ │ ├── invoked.timestamp │ │ │ │ │ │ └── lib-rand_isaac-a09e4997930d9a7a.json │ │ │ │ │ ├── rand_chacha-c84fea8c15b32821 │ │ │ │ │ │ ├── dep-lib-rand_chacha-c84fea8c15b32821 │ │ │ │ │ │ ├── lib-rand_chacha-c84fea8c15b32821 │ │ │ │ │ │ ├── invoked.timestamp │ │ │ │ │ │ └── lib-rand_chacha-c84fea8c15b32821.json │ │ │ │ │ ├── rand_jitter-ffc729094b857dfd │ │ │ │ │ │ ├── dep-lib-rand_jitter-ffc729094b857dfd │ │ │ │ │ │ ├── lib-rand_jitter-ffc729094b857dfd │ │ │ │ │ │ ├── invoked.timestamp │ │ │ │ │ │ └── lib-rand_jitter-ffc729094b857dfd.json │ │ │ │ │ ├── rand_xorshift-7c16fccce9ec60e7 │ │ │ │ │ │ ├── dep-lib-rand_xorshift-7c16fccce9ec60e7 │ │ │ │ │ │ ├── lib-rand_xorshift-7c16fccce9ec60e7 │ │ │ │ │ │ ├── invoked.timestamp │ │ │ │ │ │ └── lib-rand_xorshift-7c16fccce9ec60e7.json │ │ │ │ │ ├── libc-92f63d88abbc9702 │ │ │ │ │ │ ├── dep-build-script-build_script_build-92f63d88abbc9702 │ │ │ │ │ │ ├── build-script-build_script_build-92f63d88abbc9702 │ │ │ │ │ │ ├── invoked.timestamp │ │ │ │ │ │ └── build-script-build_script_build-92f63d88abbc9702.json │ │ │ │ │ ├── rand-e20a05f02a4f869b │ │ │ │ │ │ ├── dep-build-script-build_script_build-e20a05f02a4f869b │ │ │ │ │ │ ├── build-script-build_script_build-e20a05f02a4f869b │ │ │ │ │ │ ├── invoked.timestamp │ │ │ │ │ │ └── build-script-build_script_build-e20a05f02a4f869b.json │ │ │ │ │ ├── rand_pcg-89b9588bdd1cef19 │ │ │ │ │ │ ├── dep-build-script-build_script_build-89b9588bdd1cef19 │ │ │ │ │ │ ├── build-script-build_script_build-89b9588bdd1cef19 │ │ │ │ │ │ ├── invoked.timestamp │ │ │ │ │ │ └── build-script-build_script_build-89b9588bdd1cef19.json │ │ │ │ │ ├── rand_chacha-11fcddb36ce71f77 │ │ │ │ │ │ ├── dep-build-script-build_script_build-11fcddb36ce71f77 │ │ │ │ │ │ ├── build-script-build_script_build-11fcddb36ce71f77 │ │ │ │ │ │ ├── invoked.timestamp │ │ │ │ │ │ └── build-script-build_script_build-11fcddb36ce71f77.json │ │ │ │ │ ├── libc-080a32e0ba3d7568 │ │ │ │ │ │ ├── run-build-script-build_script_build-080a32e0ba3d7568 │ │ │ │ │ │ └── run-build-script-build_script_build-080a32e0ba3d7568.json │ │ │ │ │ ├── rand-39a3e59d1559ed96 │ │ │ │ │ │ ├── run-build-script-build_script_build-39a3e59d1559ed96 │ │ │ │ │ │ └── run-build-script-build_script_build-39a3e59d1559ed96.json │ │ │ │ │ ├── rand_pcg-6c105b2d74e471fd │ │ │ │ │ │ ├── run-build-script-build_script_build-6c105b2d74e471fd │ │ │ │ │ │ └── run-build-script-build_script_build-6c105b2d74e471fd.json │ │ │ │ │ └── rand_chacha-6d3af2a48b82d1f1 │ │ │ │ │ │ ├── run-build-script-build_script_build-6d3af2a48b82d1f1 │ │ │ │ │ │ └── run-build-script-build_script_build-6d3af2a48b82d1f1.json │ │ │ │ ├── dice │ │ │ │ ├── libdice.rlib │ │ │ │ ├── libdice.d │ │ │ │ ├── deps │ │ │ │ │ ├── dice-7ed4734a92a5e4ba │ │ │ │ │ ├── dice-d30886d5ca457a36 │ │ │ │ │ ├── libdice-a1187a9306336900.rlib │ │ │ │ │ ├── libdice-a1187a9306336900.rmeta │ │ │ │ │ ├── liblibc-81b3ebe91fc7814e.rlib │ │ │ │ │ ├── liblibc-81b3ebe91fc7814e.rmeta │ │ │ │ │ ├── librand-731b608ef4b0c191.rlib │ │ │ │ │ ├── librand-731b608ef4b0c191.rmeta │ │ │ │ │ ├── libautocfg-79cb8f5711b5481a.rlib │ │ │ │ │ ├── librand_hc-de64eee1d3c2b3e3.rlib │ │ │ │ │ ├── librand_os-3d3de5ad4384f6df.rlib │ │ │ │ │ ├── libautocfg-79cb8f5711b5481a.rmeta │ │ │ │ │ ├── librand_core-5466fae7cf5a8d1d.rlib │ │ │ │ │ ├── librand_core-5466fae7cf5a8d1d.rmeta │ │ │ │ │ ├── librand_core-94dc1c6006443d6f.rlib │ │ │ │ │ ├── librand_core-94dc1c6006443d6f.rmeta │ │ │ │ │ ├── librand_hc-de64eee1d3c2b3e3.rmeta │ │ │ │ │ ├── librand_isaac-a09e4997930d9a7a.rlib │ │ │ │ │ ├── librand_os-3d3de5ad4384f6df.rmeta │ │ │ │ │ ├── librand_pcg-7cfd0b92d80f3eb1.rlib │ │ │ │ │ ├── librand_pcg-7cfd0b92d80f3eb1.rmeta │ │ │ │ │ ├── librand_chacha-c84fea8c15b32821.rlib │ │ │ │ │ ├── librand_chacha-c84fea8c15b32821.rmeta │ │ │ │ │ ├── librand_isaac-a09e4997930d9a7a.rmeta │ │ │ │ │ ├── librand_jitter-ffc729094b857dfd.rlib │ │ │ │ │ ├── librand_jitter-ffc729094b857dfd.rmeta │ │ │ │ │ ├── librand_xorshift-7c16fccce9ec60e7.rlib │ │ │ │ │ ├── librand_xorshift-7c16fccce9ec60e7.rmeta │ │ │ │ │ ├── dice-d30886d5ca457a36.d │ │ │ │ │ ├── dice-7ed4734a92a5e4ba.d │ │ │ │ │ └── dice-a1187a9306336900.d │ │ │ │ └── dice.d │ │ │ └── rls │ │ │ │ └── debug │ │ │ │ ├── .cargo-lock │ │ │ │ ├── build │ │ │ │ ├── libc-080a32e0ba3d7568 │ │ │ │ │ ├── stderr │ │ │ │ │ ├── invoked.timestamp │ │ │ │ │ ├── root-output │ │ │ │ │ └── output │ │ │ │ ├── rand-39a3e59d1559ed96 │ │ │ │ │ ├── stderr │ │ │ │ │ ├── invoked.timestamp │ │ │ │ │ ├── root-output │ │ │ │ │ ├── output │ │ │ │ │ └── out │ │ │ │ │ │ └── probe0.ll │ │ │ │ ├── rand_pcg-6c105b2d74e471fd │ │ │ │ │ ├── stderr │ │ │ │ │ ├── invoked.timestamp │ │ │ │ │ ├── output │ │ │ │ │ ├── root-output │ │ │ │ │ └── out │ │ │ │ │ │ └── probe0.ll │ │ │ │ ├── rand_chacha-6d3af2a48b82d1f1 │ │ │ │ │ ├── stderr │ │ │ │ │ ├── invoked.timestamp │ │ │ │ │ ├── output │ │ │ │ │ ├── root-output │ │ │ │ │ └── out │ │ │ │ │ │ └── probe0.ll │ │ │ │ ├── libc-92f63d88abbc9702 │ │ │ │ │ ├── build-script-build │ │ │ │ │ ├── build_script_build-92f63d88abbc9702 │ │ │ │ │ └── build_script_build-92f63d88abbc9702.d │ │ │ │ ├── rand-e20a05f02a4f869b │ │ │ │ │ ├── build-script-build │ │ │ │ │ ├── build_script_build-e20a05f02a4f869b │ │ │ │ │ └── build_script_build-e20a05f02a4f869b.d │ │ │ │ ├── rand_pcg-89b9588bdd1cef19 │ │ │ │ │ ├── build-script-build │ │ │ │ │ ├── build_script_build-89b9588bdd1cef19 │ │ │ │ │ └── build_script_build-89b9588bdd1cef19.d │ │ │ │ └── rand_chacha-11fcddb36ce71f77 │ │ │ │ │ ├── build-script-build │ │ │ │ │ └── build_script_build-11fcddb36ce71f77 │ │ │ │ ├── deps │ │ │ │ ├── libdice-10398e5bba7076de.rmeta │ │ │ │ ├── libdice-4352c4e8dc038f30.rmeta │ │ │ │ ├── libdice-738593c8811e521d.rmeta │ │ │ │ ├── libdice-9bbf44ebb20a55cc.rmeta │ │ │ │ ├── liblibc-f99a22dcfef0ef25.rmeta │ │ │ │ ├── librand-99818d007defc043.rmeta │ │ │ │ ├── libautocfg-79cb8f5711b5481a.rlib │ │ │ │ ├── libautocfg-79cb8f5711b5481a.rmeta │ │ │ │ ├── librand_hc-446e0436c83e3e28.rmeta │ │ │ │ ├── librand_os-7cfce459684d55f0.rmeta │ │ │ │ ├── librand_core-39959f2c6e70e7a9.rmeta │ │ │ │ ├── librand_core-d68922d88bd6e7a8.rmeta │ │ │ │ ├── librand_isaac-9b0bdfbe54a8db40.rmeta │ │ │ │ ├── librand_pcg-e9f2401ee2095dd7.rmeta │ │ │ │ ├── librand_chacha-7951eb6623c18c6e.rmeta │ │ │ │ ├── librand_jitter-4f6d635543823c79.rmeta │ │ │ │ ├── librand_xorshift-376d24667acf24aa.rmeta │ │ │ │ ├── dice-4352c4e8dc038f30.d │ │ │ │ ├── dice-9bbf44ebb20a55cc.d │ │ │ │ ├── dice-10398e5bba7076de.d │ │ │ │ ├── dice-738593c8811e521d.d │ │ │ │ ├── rand_core-d68922d88bd6e7a8.d │ │ │ │ └── rand_xorshift-376d24667acf24aa.d │ │ │ │ ├── incremental │ │ │ │ ├── dice-6a2mq3ikbm2 │ │ │ │ │ ├── s-fmc2oeu2qr-oe0xin.lock │ │ │ │ │ ├── s-fmc2p4xxpn-1jgrb4x.lock │ │ │ │ │ ├── s-fmc2p4xxpn-1jgrb4x-working │ │ │ │ │ │ ├── work-products.bin │ │ │ │ │ │ ├── dep-graph.bin │ │ │ │ │ │ └── query-cache.bin │ │ │ │ │ └── s-fmc2oeu2qr-oe0xin-2y0yaxrog04j8 │ │ │ │ │ │ ├── work-products.bin │ │ │ │ │ │ ├── dep-graph.bin │ │ │ │ │ │ └── query-cache.bin │ │ │ │ ├── dice-17vtkce2jrddh │ │ │ │ │ ├── s-fmc460n5t8-6dz18v.lock │ │ │ │ │ └── s-fmc460n5t8-6dz18v-mg9dm3dztj3b │ │ │ │ │ │ ├── work-products.bin │ │ │ │ │ │ ├── dep-graph.bin │ │ │ │ │ │ └── query-cache.bin │ │ │ │ ├── dice-1dhow2j3qcf09 │ │ │ │ │ ├── s-fmc2oes5ru-1fqgfv8.lock │ │ │ │ │ ├── s-fmc2p5117x-1or2kgl.lock │ │ │ │ │ ├── s-fmc2p5117x-1or2kgl-working │ │ │ │ │ │ ├── work-products.bin │ │ │ │ │ │ ├── dep-graph.bin │ │ │ │ │ │ └── query-cache.bin │ │ │ │ │ └── s-fmc2oes5ru-1fqgfv8-2y4h3p22u55ug │ │ │ │ │ │ ├── work-products.bin │ │ │ │ │ │ ├── dep-graph.bin │ │ │ │ │ │ └── query-cache.bin │ │ │ │ └── dice-1wudk3gpj7meq │ │ │ │ │ ├── s-fmc460kfkx-ton14h.lock │ │ │ │ │ └── s-fmc460kfkx-ton14h-278p1egfotgrm │ │ │ │ │ ├── work-products.bin │ │ │ │ │ ├── dep-graph.bin │ │ │ │ │ └── query-cache.bin │ │ │ │ └── .fingerprint │ │ │ │ ├── libc-f99a22dcfef0ef25 │ │ │ │ ├── dep-lib-libc-f99a22dcfef0ef25 │ │ │ │ ├── lib-libc-f99a22dcfef0ef25 │ │ │ │ ├── invoked.timestamp │ │ │ │ └── lib-libc-f99a22dcfef0ef25.json │ │ │ │ ├── rand-99818d007defc043 │ │ │ │ ├── dep-lib-rand-99818d007defc043 │ │ │ │ ├── lib-rand-99818d007defc043 │ │ │ │ └── invoked.timestamp │ │ │ │ ├── autocfg-79cb8f5711b5481a │ │ │ │ ├── dep-lib-autocfg-79cb8f5711b5481a │ │ │ │ ├── lib-autocfg-79cb8f5711b5481a │ │ │ │ ├── invoked.timestamp │ │ │ │ └── lib-autocfg-79cb8f5711b5481a.json │ │ │ │ ├── rand_hc-446e0436c83e3e28 │ │ │ │ ├── dep-lib-rand_hc-446e0436c83e3e28 │ │ │ │ ├── lib-rand_hc-446e0436c83e3e28 │ │ │ │ ├── invoked.timestamp │ │ │ │ └── lib-rand_hc-446e0436c83e3e28.json │ │ │ │ ├── rand_os-7cfce459684d55f0 │ │ │ │ ├── dep-lib-rand_os-7cfce459684d55f0 │ │ │ │ ├── lib-rand_os-7cfce459684d55f0 │ │ │ │ ├── invoked.timestamp │ │ │ │ └── lib-rand_os-7cfce459684d55f0.json │ │ │ │ ├── rand_pcg-e9f2401ee2095dd7 │ │ │ │ ├── dep-lib-rand_pcg-e9f2401ee2095dd7 │ │ │ │ ├── lib-rand_pcg-e9f2401ee2095dd7 │ │ │ │ ├── invoked.timestamp │ │ │ │ └── lib-rand_pcg-e9f2401ee2095dd7.json │ │ │ │ ├── dice-10398e5bba7076de │ │ │ │ ├── bin-dice-10398e5bba7076de │ │ │ │ ├── invoked.timestamp │ │ │ │ └── bin-dice-10398e5bba7076de.json │ │ │ │ ├── dice-4352c4e8dc038f30 │ │ │ │ ├── bin-dice-4352c4e8dc038f30 │ │ │ │ ├── dep-bin-dice-4352c4e8dc038f30 │ │ │ │ ├── invoked.timestamp │ │ │ │ └── bin-dice-4352c4e8dc038f30.json │ │ │ │ ├── rand_chacha-7951eb6623c18c6e │ │ │ │ ├── dep-lib-rand_chacha-7951eb6623c18c6e │ │ │ │ ├── lib-rand_chacha-7951eb6623c18c6e │ │ │ │ ├── invoked.timestamp │ │ │ │ └── lib-rand_chacha-7951eb6623c18c6e.json │ │ │ │ ├── rand_core-39959f2c6e70e7a9 │ │ │ │ ├── dep-lib-rand_core-39959f2c6e70e7a9 │ │ │ │ ├── lib-rand_core-39959f2c6e70e7a9 │ │ │ │ ├── invoked.timestamp │ │ │ │ └── lib-rand_core-39959f2c6e70e7a9.json │ │ │ │ ├── rand_core-d68922d88bd6e7a8 │ │ │ │ ├── dep-lib-rand_core-d68922d88bd6e7a8 │ │ │ │ ├── lib-rand_core-d68922d88bd6e7a8 │ │ │ │ ├── invoked.timestamp │ │ │ │ └── lib-rand_core-d68922d88bd6e7a8.json │ │ │ │ ├── rand_isaac-9b0bdfbe54a8db40 │ │ │ │ ├── dep-lib-rand_isaac-9b0bdfbe54a8db40 │ │ │ │ ├── lib-rand_isaac-9b0bdfbe54a8db40 │ │ │ │ ├── invoked.timestamp │ │ │ │ └── lib-rand_isaac-9b0bdfbe54a8db40.json │ │ │ │ ├── rand_jitter-4f6d635543823c79 │ │ │ │ ├── dep-lib-rand_jitter-4f6d635543823c79 │ │ │ │ ├── lib-rand_jitter-4f6d635543823c79 │ │ │ │ ├── invoked.timestamp │ │ │ │ └── lib-rand_jitter-4f6d635543823c79.json │ │ │ │ ├── dice-738593c8811e521d │ │ │ │ ├── test-bin-dice-738593c8811e521d │ │ │ │ ├── invoked.timestamp │ │ │ │ └── test-bin-dice-738593c8811e521d.json │ │ │ │ ├── dice-9bbf44ebb20a55cc │ │ │ │ ├── dep-test-bin-dice-9bbf44ebb20a55cc │ │ │ │ ├── test-bin-dice-9bbf44ebb20a55cc │ │ │ │ ├── invoked.timestamp │ │ │ │ └── test-bin-dice-9bbf44ebb20a55cc.json │ │ │ │ ├── rand_xorshift-376d24667acf24aa │ │ │ │ ├── dep-lib-rand_xorshift-376d24667acf24aa │ │ │ │ ├── lib-rand_xorshift-376d24667acf24aa │ │ │ │ ├── invoked.timestamp │ │ │ │ └── lib-rand_xorshift-376d24667acf24aa.json │ │ │ │ ├── libc-92f63d88abbc9702 │ │ │ │ ├── dep-build-script-build_script_build-92f63d88abbc9702 │ │ │ │ ├── build-script-build_script_build-92f63d88abbc9702 │ │ │ │ ├── invoked.timestamp │ │ │ │ └── build-script-build_script_build-92f63d88abbc9702.json │ │ │ │ ├── rand-e20a05f02a4f869b │ │ │ │ ├── dep-build-script-build_script_build-e20a05f02a4f869b │ │ │ │ ├── build-script-build_script_build-e20a05f02a4f869b │ │ │ │ ├── invoked.timestamp │ │ │ │ └── build-script-build_script_build-e20a05f02a4f869b.json │ │ │ │ ├── rand_pcg-89b9588bdd1cef19 │ │ │ │ ├── dep-build-script-build_script_build-89b9588bdd1cef19 │ │ │ │ ├── build-script-build_script_build-89b9588bdd1cef19 │ │ │ │ ├── invoked.timestamp │ │ │ │ └── build-script-build_script_build-89b9588bdd1cef19.json │ │ │ │ ├── rand_chacha-11fcddb36ce71f77 │ │ │ │ ├── dep-build-script-build_script_build-11fcddb36ce71f77 │ │ │ │ ├── build-script-build_script_build-11fcddb36ce71f77 │ │ │ │ ├── invoked.timestamp │ │ │ │ └── build-script-build_script_build-11fcddb36ce71f77.json │ │ │ │ ├── libc-080a32e0ba3d7568 │ │ │ │ ├── run-build-script-build_script_build-080a32e0ba3d7568 │ │ │ │ └── run-build-script-build_script_build-080a32e0ba3d7568.json │ │ │ │ ├── rand-39a3e59d1559ed96 │ │ │ │ ├── run-build-script-build_script_build-39a3e59d1559ed96 │ │ │ │ └── run-build-script-build_script_build-39a3e59d1559ed96.json │ │ │ │ ├── rand_pcg-6c105b2d74e471fd │ │ │ │ ├── run-build-script-build_script_build-6c105b2d74e471fd │ │ │ │ └── run-build-script-build_script_build-6c105b2d74e471fd.json │ │ │ │ └── rand_chacha-6d3af2a48b82d1f1 │ │ │ │ ├── run-build-script-build_script_build-6d3af2a48b82d1f1 │ │ │ │ └── run-build-script-build_script_build-6d3af2a48b82d1f1.json │ │ └── Cargo.toml │ ├── user_input │ │ ├── src │ │ │ └── bin │ │ │ │ ├── abcd.rs │ │ │ │ └── reference.rs │ │ └── Cargo.toml │ ├── Batch4_Apr11_HelpDesk.zip │ └── literal │ │ └── Cargo.toml ├── apr04 │ ├── temp │ │ ├── src │ │ │ └── main.rs │ │ └── Cargo.toml │ ├── April04_HelpDesk.zip │ ├── one │ │ └── Cargo.toml │ ├── enum1 │ │ └── Cargo.toml │ ├── loop1 │ │ └── Cargo.toml │ ├── struct1 │ │ └── Cargo.toml │ └── len_option │ │ ├── Cargo.toml │ │ └── src │ │ └── main.rs └── 18apr │ ├── kunna │ ├── src │ │ ├── lunch.rs │ │ └── main.rs │ └── Cargo.toml │ ├── string_length │ ├── src │ │ └── lib.rs │ └── Cargo.toml │ └── length_check_bin │ ├── src │ └── main.rs │ └── Cargo.toml ├── oct20 ├── arith │ ├── .gitignore │ └── Cargo.toml ├── array │ ├── .gitignore │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── datatype │ ├── .gitignore │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── shadowing │ ├── .gitignore │ └── Cargo.toml └── tuple │ ├── .gitignore │ ├── Cargo.toml │ └── src │ └── main.rs ├── implementation ├── src │ └── main.rs └── Cargo.toml ├── readme.md ├── jan19 ├── module1 │ ├── src │ │ ├── print.rs │ │ └── main.rs │ └── Cargo.toml ├── hellp │ ├── src │ │ └── main.rs │ └── Cargo.toml ├── hello │ ├── src │ │ └── main.rs │ └── Cargo.toml ├── string │ └── Cargo.toml ├── vector │ └── Cargo.toml └── struct_enum │ ├── Cargo.toml │ └── src │ └── main.rs ├── jan12 ├── add2n │ ├── src │ │ └── lib.rs │ └── Cargo.toml ├── main_lib2 │ ├── src │ │ └── lib.rs │ └── Cargo.toml ├── main_and_lib │ ├── src │ │ └── lib.rs │ ├── mytable │ │ ├── src │ │ │ └── lib.rs │ │ └── Cargo.toml │ └── Cargo.toml ├── chap6 │ └── Cargo.toml ├── module │ └── Cargo.toml └── resultenum │ └── Cargo.toml ├── dec22 ├── food │ └── Cargo.toml ├── cricket │ └── Cargo.toml └── implementation │ └── Cargo.toml ├── dec15_morning ├── heap │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── reference │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── struct1 │ └── Cargo.toml └── struct2 │ └── Cargo.toml ├── evening_nov24 └── heap │ └── Cargo.toml ├── evening_oct20 ├── arit │ └── Cargo.toml ├── shadow │ └── Cargo.toml ├── compound │ ├── Cargo.toml │ └── src │ │ └── main.rs └── datatype │ ├── Cargo.toml │ └── src │ └── main.rs ├── dec01_evening ├── move1 │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── func_return │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── stringtype │ ├── Cargo.toml │ └── src │ │ └── main.rs └── random │ ├── Cargo.toml │ └── src │ └── main.rs ├── dec01_morning ├── chap04 │ └── Cargo.toml └── random │ ├── Cargo.toml │ └── src │ └── main.rs ├── dec08_evening ├── dangle │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── reference │ └── Cargo.toml ├── rand │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── ref_function │ ├── Cargo.toml │ └── src │ │ └── main.rs └── return_string │ └── Cargo.toml ├── dec08_morning ├── dangle │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── point │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── mut_ref │ └── Cargo.toml └── owner_return │ └── Cargo.toml ├── evening_oct27 ├── ifelse │ └── Cargo.toml ├── scope │ └── Cargo.toml ├── stat_ex │ ├── Cargo.toml │ └── src │ │ └── main.rs └── userintput │ ├── Cargo.toml │ └── src │ └── main.rs ├── morning_oct27 ├── ifelse │ └── Cargo.toml ├── scope │ ├── Cargo.toml │ └── src │ │ └── main.rs └── userinput │ ├── Cargo.toml │ └── src │ └── main.rs ├── dec15_evening ├── reference │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── struct1 │ └── Cargo.toml └── struct2 │ └── Cargo.toml └── morning_nov24 ├── function ├── Cargo.toml └── src │ └── main.rs ├── loopfunction ├── Cargo.toml └── src │ └── main.rs └── simplefunction ├── Cargo.toml └── src └── main.rs /jan26/file/hello.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/.cargo-lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jan26/fileread/hello.txt: -------------------------------------------------------------------------------- 1 | major tariq 2 | -------------------------------------------------------------------------------- /jan26/fileread2/hello.txt: -------------------------------------------------------------------------------- 1 | major tariq 2 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.cargo-lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/user_input/src/bin/abcd.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.cargo-lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oct20/arith/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | -------------------------------------------------------------------------------- /oct20/array/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | -------------------------------------------------------------------------------- /oct20/datatype/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | -------------------------------------------------------------------------------- /oct20/shadowing/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | -------------------------------------------------------------------------------- /oct20/tuple/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/deps/libenum1-1a6eafb5bb735a93.rmeta: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/deps/libenum1-4caa6f8ba5b4ec87.rmeta: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/deps/libenum1-4f9ce1b0c4e59e7e.rmeta: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/deps/libenum1-d23646d1de3895ce.rmeta: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/build/libc-080a32e0ba3d7568/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/build/rand-39a3e59d1559ed96/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/build/rand_chacha-6d3af2a48b82d1f1/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/build/rand_pcg-6c105b2d74e471fd/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/build/libc-080a32e0ba3d7568/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/build/rand-39a3e59d1559ed96/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/build/rand_pcg-6c105b2d74e471fd/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/deps/libdice-10398e5bba7076de.rmeta: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/deps/libdice-4352c4e8dc038f30.rmeta: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/deps/libdice-738593c8811e521d.rmeta: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/deps/libdice-9bbf44ebb20a55cc.rmeta: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/build/rand_chacha-6d3af2a48b82d1f1/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /implementation/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("Hello, world!"); 3 | } 4 | -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/incremental/enum1-25ltdcke0hzrx/s-fjhthf351l-1mdoecz.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/incremental/enum1-28vqqr49b0uin/s-fjlxreels2-18q71ap.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/incremental/enum1-28vqqr49b0uin/s-fjlxrk0brm-a731bk.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/incremental/enum1-32a6bsrgv4zgb/s-fjlxregnfl-1w2w0af.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/incremental/enum1-32a6bsrgv4zgb/s-fjlxrk32kj-1si8n22.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/incremental/enum1-3axlrcbj5cyk6/s-fjhthew83r-1g04uf9.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3cp0s4422xzp2/s-fmc2tc1yo3-18tck4t.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/incremental/dice-6a2mq3ikbm2/s-fmc2oeu2qr-oe0xin.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/apr04/temp/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("Hello, world!"); 3 | } 4 | -------------------------------------------------------------------------------- /jan26/panic2/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | let v = vec![1, 2, 3]; 3 | 4 | v[99]; 5 | } -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/incremental/dice-17vtkce2jrddh/s-fmc460n5t8-6dz18v.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/incremental/dice-1dhow2j3qcf09/s-fmc2oes5ru-1fqgfv8.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/incremental/dice-1dhow2j3qcf09/s-fmc2p5117x-1or2kgl.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/incremental/dice-1wudk3gpj7meq/s-fmc460kfkx-ton14h.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/incremental/dice-6a2mq3ikbm2/s-fmc2p4xxpn-1jgrb4x.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/libc-81b3ebe91fc7814e/dep-lib-libc-81b3ebe91fc7814e: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand-731b608ef4b0c191/dep-lib-rand-731b608ef4b0c191: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/user_input/src/bin/reference.rs: -------------------------------------------------------------------------------- 1 | fn main (){ 2 | println!("Hello World!"); 3 | } -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # PIAIC Batch 3 IoT Islamabad 2 | # Quarter 1 3 | # Codes are according to class date -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/autocfg-79cb8f5711b5481a/dep-lib-autocfg-79cb8f5711b5481a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_hc-de64eee1d3c2b3e3/dep-lib-rand_hc-de64eee1d3c2b3e3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_os-3d3de5ad4384f6df/dep-lib-rand_os-3d3de5ad4384f6df: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_pcg-7cfd0b92d80f3eb1/dep-lib-rand_pcg-7cfd0b92d80f3eb1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/libc-f99a22dcfef0ef25/dep-lib-libc-f99a22dcfef0ef25: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand-99818d007defc043/dep-lib-rand-99818d007defc043: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/.fingerprint/enum1-4caa6f8ba5b4ec87/bin-enum1-4caa6f8ba5b4ec87: -------------------------------------------------------------------------------- 1 | f3c4c41d4559f3ff -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/.fingerprint/enum1-4caa6f8ba5b4ec87/dep-bin-enum1-4caa6f8ba5b4ec87: -------------------------------------------------------------------------------- 1 | src/main.rs -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/.fingerprint/enum1-d23646d1de3895ce/bin-enum1-d23646d1de3895ce: -------------------------------------------------------------------------------- 1 | a9481a6c2c991011 -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/.fingerprint/enum1-d23646d1de3895ce/dep-bin-enum1-d23646d1de3895ce: -------------------------------------------------------------------------------- 1 | src/main.rs -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/dice-7ed4734a92a5e4ba/bin-dice-7ed4734a92a5e4ba: -------------------------------------------------------------------------------- 1 | ae3f05182378b55c -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/dice-a1187a9306336900/dep-lib-dice-a1187a9306336900: -------------------------------------------------------------------------------- 1 | src/lib.rs -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/dice-a1187a9306336900/lib-dice-a1187a9306336900: -------------------------------------------------------------------------------- 1 | deadc003b6f3e247 -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/dice-d30886d5ca457a36/bin-dice-d30886d5ca457a36: -------------------------------------------------------------------------------- 1 | 350f48ed024c61b6 -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/dice-d30886d5ca457a36/dep-bin-dice-d30886d5ca457a36: -------------------------------------------------------------------------------- 1 | src/main.rs -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/libc-81b3ebe91fc7814e/lib-libc-81b3ebe91fc7814e: -------------------------------------------------------------------------------- 1 | 8f228d51d7b998ed -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand-731b608ef4b0c191/lib-rand-731b608ef4b0c191: -------------------------------------------------------------------------------- 1 | 8dd5b0050dfd03fa -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_core-5466fae7cf5a8d1d/dep-lib-rand_core-5466fae7cf5a8d1d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_core-94dc1c6006443d6f/dep-lib-rand_core-94dc1c6006443d6f: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_isaac-a09e4997930d9a7a/dep-lib-rand_isaac-a09e4997930d9a7a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/autocfg-79cb8f5711b5481a/dep-lib-autocfg-79cb8f5711b5481a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_hc-446e0436c83e3e28/dep-lib-rand_hc-446e0436c83e3e28: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_os-7cfce459684d55f0/dep-lib-rand_os-7cfce459684d55f0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_pcg-e9f2401ee2095dd7/dep-lib-rand_pcg-e9f2401ee2095dd7: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/.fingerprint/enum1-1a6eafb5bb735a93/dep-test-bin-enum1-1a6eafb5bb735a93: -------------------------------------------------------------------------------- 1 | src/main.rs -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/.fingerprint/enum1-1a6eafb5bb735a93/test-bin-enum1-1a6eafb5bb735a93: -------------------------------------------------------------------------------- 1 | 0f5d1684d7cc42d4 -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/.fingerprint/enum1-4f9ce1b0c4e59e7e/dep-test-bin-enum1-4f9ce1b0c4e59e7e: -------------------------------------------------------------------------------- 1 | src/main.rs -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/.fingerprint/enum1-4f9ce1b0c4e59e7e/test-bin-enum1-4f9ce1b0c4e59e7e: -------------------------------------------------------------------------------- 1 | 3c8916c7c36a8057 -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/autocfg-79cb8f5711b5481a/lib-autocfg-79cb8f5711b5481a: -------------------------------------------------------------------------------- 1 | 8b040c951e6de754 -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_chacha-c84fea8c15b32821/dep-lib-rand_chacha-c84fea8c15b32821: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_hc-de64eee1d3c2b3e3/lib-rand_hc-de64eee1d3c2b3e3: -------------------------------------------------------------------------------- 1 | 1f6e084f932a7510 -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_jitter-ffc729094b857dfd/dep-lib-rand_jitter-ffc729094b857dfd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_os-3d3de5ad4384f6df/lib-rand_os-3d3de5ad4384f6df: -------------------------------------------------------------------------------- 1 | c0a134d470ba54c1 -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_xorshift-7c16fccce9ec60e7/dep-lib-rand_xorshift-7c16fccce9ec60e7: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/dice-10398e5bba7076de/bin-dice-10398e5bba7076de: -------------------------------------------------------------------------------- 1 | 83985d48a69761a3 -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/dice-4352c4e8dc038f30/bin-dice-4352c4e8dc038f30: -------------------------------------------------------------------------------- 1 | 210bd6a9d243465a -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/dice-4352c4e8dc038f30/dep-bin-dice-4352c4e8dc038f30: -------------------------------------------------------------------------------- 1 | src/main.rs -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/libc-f99a22dcfef0ef25/lib-libc-f99a22dcfef0ef25: -------------------------------------------------------------------------------- 1 | 1eef4cf9ef1bcf35 -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand-99818d007defc043/lib-rand-99818d007defc043: -------------------------------------------------------------------------------- 1 | b27e92ad01b4455e -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_chacha-7951eb6623c18c6e/dep-lib-rand_chacha-7951eb6623c18c6e: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_core-39959f2c6e70e7a9/dep-lib-rand_core-39959f2c6e70e7a9: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_core-d68922d88bd6e7a8/dep-lib-rand_core-d68922d88bd6e7a8: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_isaac-9b0bdfbe54a8db40/dep-lib-rand_isaac-9b0bdfbe54a8db40: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_jitter-4f6d635543823c79/dep-lib-rand_jitter-4f6d635543823c79: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/libc-92f63d88abbc9702/dep-build-script-build_script_build-92f63d88abbc9702: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand-e20a05f02a4f869b/dep-build-script-build_script_build-e20a05f02a4f869b: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_core-5466fae7cf5a8d1d/lib-rand_core-5466fae7cf5a8d1d: -------------------------------------------------------------------------------- 1 | 1417b01bb6913e9d -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_core-94dc1c6006443d6f/lib-rand_core-94dc1c6006443d6f: -------------------------------------------------------------------------------- 1 | 08ff5b261d4ceedd -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_pcg-7cfd0b92d80f3eb1/lib-rand_pcg-7cfd0b92d80f3eb1: -------------------------------------------------------------------------------- 1 | 247aa31dcbdce599 -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/autocfg-79cb8f5711b5481a/lib-autocfg-79cb8f5711b5481a: -------------------------------------------------------------------------------- 1 | 8b040c951e6de754 -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/dice-738593c8811e521d/test-bin-dice-738593c8811e521d: -------------------------------------------------------------------------------- 1 | 273503a1efb320d6 -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/dice-9bbf44ebb20a55cc/dep-test-bin-dice-9bbf44ebb20a55cc: -------------------------------------------------------------------------------- 1 | src/main.rs -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/dice-9bbf44ebb20a55cc/test-bin-dice-9bbf44ebb20a55cc: -------------------------------------------------------------------------------- 1 | 1e1ee55a8c89e1b4 -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_hc-446e0436c83e3e28/lib-rand_hc-446e0436c83e3e28: -------------------------------------------------------------------------------- 1 | 16d1f586e14be74e -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_os-7cfce459684d55f0/lib-rand_os-7cfce459684d55f0: -------------------------------------------------------------------------------- 1 | 546f9c2c4d640b7d -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_xorshift-376d24667acf24aa/dep-lib-rand_xorshift-376d24667acf24aa: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/dice-7ed4734a92a5e4ba/dep-bin-dice-7ed4734a92a5e4ba: -------------------------------------------------------------------------------- 1 | src/main.rssrc/lib.rs -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_chacha-c84fea8c15b32821/lib-rand_chacha-c84fea8c15b32821: -------------------------------------------------------------------------------- 1 | 91afd7c2be59e4f6 -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_isaac-a09e4997930d9a7a/lib-rand_isaac-a09e4997930d9a7a: -------------------------------------------------------------------------------- 1 | 30a476f094e38c1b -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_jitter-ffc729094b857dfd/lib-rand_jitter-ffc729094b857dfd: -------------------------------------------------------------------------------- 1 | 826bbd6351fffec2 -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_pcg-89b9588bdd1cef19/dep-build-script-build_script_build-89b9588bdd1cef19: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/libc-92f63d88abbc9702/dep-build-script-build_script_build-92f63d88abbc9702: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand-e20a05f02a4f869b/dep-build-script-build_script_build-e20a05f02a4f869b: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_core-39959f2c6e70e7a9/lib-rand_core-39959f2c6e70e7a9: -------------------------------------------------------------------------------- 1 | 81b4d8150b11c96d -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_core-d68922d88bd6e7a8/lib-rand_core-d68922d88bd6e7a8: -------------------------------------------------------------------------------- 1 | 2713831f8733a2d8 -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_isaac-9b0bdfbe54a8db40/lib-rand_isaac-9b0bdfbe54a8db40: -------------------------------------------------------------------------------- 1 | 9b056ee42549e39b -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_pcg-e9f2401ee2095dd7/lib-rand_pcg-e9f2401ee2095dd7: -------------------------------------------------------------------------------- 1 | 1a375e64e7b30f77 -------------------------------------------------------------------------------- /jan19/module1/src/print.rs: -------------------------------------------------------------------------------- 1 | pub mod kpk { 2 | pub fn peshawar() { 3 | println!("We are in Peshawar"); 4 | } 5 | } -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_chacha-11fcddb36ce71f77/dep-build-script-build_script_build-11fcddb36ce71f77: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_xorshift-7c16fccce9ec60e7/lib-rand_xorshift-7c16fccce9ec60e7: -------------------------------------------------------------------------------- 1 | 8b22feccb61613b7 -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/build/libc-080a32e0ba3d7568/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/build/rand-39a3e59d1559ed96/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/build/rand_pcg-6c105b2d74e471fd/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_chacha-7951eb6623c18c6e/lib-rand_chacha-7951eb6623c18c6e: -------------------------------------------------------------------------------- 1 | ed1042fe55c341b2 -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_jitter-4f6d635543823c79/lib-rand_jitter-4f6d635543823c79: -------------------------------------------------------------------------------- 1 | 725183ea51d26463 -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_pcg-89b9588bdd1cef19/dep-build-script-build_script_build-89b9588bdd1cef19: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/build/libc-080a32e0ba3d7568/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/build/rand-39a3e59d1559ed96/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/apr04/April04_HelpDesk.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/apr04/April04_HelpDesk.zip -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/.fingerprint/enum1-1a6eafb5bb735a93/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/.fingerprint/enum1-4caa6f8ba5b4ec87/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/.fingerprint/enum1-4f9ce1b0c4e59e7e/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/.fingerprint/enum1-d23646d1de3895ce/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /jan19/hellp/src/main.rs: -------------------------------------------------------------------------------- 1 | use islamabad; 2 | fn main() { 3 | println!("Hello, world! "); 4 | islamabad::welcome(); 5 | } 6 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/dice-7ed4734a92a5e4ba/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/dice-a1187a9306336900/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/dice-d30886d5ca457a36/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/libc-81b3ebe91fc7814e/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/libc-92f63d88abbc9702/build-script-build_script_build-92f63d88abbc9702: -------------------------------------------------------------------------------- 1 | 102ecd5103342188 -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/libc-92f63d88abbc9702/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand-731b608ef4b0c191/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand-e20a05f02a4f869b/build-script-build_script_build-e20a05f02a4f869b: -------------------------------------------------------------------------------- 1 | 313c99ddd03f2e81 -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand-e20a05f02a4f869b/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/build/rand_chacha-6d3af2a48b82d1f1/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/dice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/dice -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_chacha-11fcddb36ce71f77/dep-build-script-build_script_build-11fcddb36ce71f77: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_xorshift-376d24667acf24aa/lib-rand_xorshift-376d24667acf24aa: -------------------------------------------------------------------------------- 1 | 77c44b98c049c74e -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/build/rand_pcg-6c105b2d74e471fd/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/Batch4_Apr11_HelpDesk.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/Batch4_Apr11_HelpDesk.zip -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/autocfg-79cb8f5711b5481a/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/libc-080a32e0ba3d7568/run-build-script-build_script_build-080a32e0ba3d7568: -------------------------------------------------------------------------------- 1 | 926b01e8c7bed011 -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand-39a3e59d1559ed96/run-build-script-build_script_build-39a3e59d1559ed96: -------------------------------------------------------------------------------- 1 | 0cf5bea7213e1b58 -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_chacha-11fcddb36ce71f77/build-script-build_script_build-11fcddb36ce71f77: -------------------------------------------------------------------------------- 1 | 8e9efef5ea4778d2 -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_chacha-11fcddb36ce71f77/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_chacha-c84fea8c15b32821/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_core-5466fae7cf5a8d1d/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_core-94dc1c6006443d6f/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_hc-de64eee1d3c2b3e3/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_isaac-a09e4997930d9a7a/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_jitter-ffc729094b857dfd/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_os-3d3de5ad4384f6df/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_pcg-6c105b2d74e471fd/run-build-script-build_script_build-6c105b2d74e471fd: -------------------------------------------------------------------------------- 1 | 17390d861c249088 -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_pcg-7cfd0b92d80f3eb1/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_pcg-89b9588bdd1cef19/build-script-build_script_build-89b9588bdd1cef19: -------------------------------------------------------------------------------- 1 | 28588964a805ab8d -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_pcg-89b9588bdd1cef19/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/build/rand_pcg-6c105b2d74e471fd/output: -------------------------------------------------------------------------------- 1 | cargo:rerun-if-changed=build.rs 2 | cargo:rustc-cfg=rustc_1_26 3 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/autocfg-79cb8f5711b5481a/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/dice-10398e5bba7076de/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/dice-4352c4e8dc038f30/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/dice-738593c8811e521d/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/dice-9bbf44ebb20a55cc/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/libc-080a32e0ba3d7568/run-build-script-build_script_build-080a32e0ba3d7568: -------------------------------------------------------------------------------- 1 | 926b01e8c7bed011 -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/libc-92f63d88abbc9702/build-script-build_script_build-92f63d88abbc9702: -------------------------------------------------------------------------------- 1 | 102ecd5103342188 -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/libc-92f63d88abbc9702/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/libc-f99a22dcfef0ef25/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand-39a3e59d1559ed96/run-build-script-build_script_build-39a3e59d1559ed96: -------------------------------------------------------------------------------- 1 | 0cf5bea7213e1b58 -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand-99818d007defc043/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand-e20a05f02a4f869b/build-script-build_script_build-e20a05f02a4f869b: -------------------------------------------------------------------------------- 1 | 313c99ddd03f2e81 -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand-e20a05f02a4f869b/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_hc-446e0436c83e3e28/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_os-7cfce459684d55f0/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_pcg-89b9588bdd1cef19/build-script-build_script_build-89b9588bdd1cef19: -------------------------------------------------------------------------------- 1 | 28588964a805ab8d -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/build/rand_chacha-6d3af2a48b82d1f1/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_chacha-6d3af2a48b82d1f1/run-build-script-build_script_build-6d3af2a48b82d1f1: -------------------------------------------------------------------------------- 1 | 3690cabe728b9f30 -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_xorshift-7c16fccce9ec60e7/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/build/rand_chacha-6d3af2a48b82d1f1/output: -------------------------------------------------------------------------------- 1 | cargo:rerun-if-changed=build.rs 2 | cargo:rustc-cfg=rustc_1_26 3 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_chacha-11fcddb36ce71f77/build-script-build_script_build-11fcddb36ce71f77: -------------------------------------------------------------------------------- 1 | 8e9efef5ea4778d2 -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_chacha-11fcddb36ce71f77/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_chacha-7951eb6623c18c6e/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_core-39959f2c6e70e7a9/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_core-d68922d88bd6e7a8/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_isaac-9b0bdfbe54a8db40/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_jitter-4f6d635543823c79/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_pcg-6c105b2d74e471fd/run-build-script-build_script_build-6c105b2d74e471fd: -------------------------------------------------------------------------------- 1 | 17390d861c249088 -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_pcg-89b9588bdd1cef19/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_pcg-e9f2401ee2095dd7/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/build/rand_chacha-6d3af2a48b82d1f1/output: -------------------------------------------------------------------------------- 1 | cargo:rerun-if-changed=build.rs 2 | cargo:rustc-cfg=rustc_1_26 3 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/build/rand_pcg-6c105b2d74e471fd/output: -------------------------------------------------------------------------------- 1 | cargo:rerun-if-changed=build.rs 2 | cargo:rustc-cfg=rustc_1_26 3 | -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/incremental/enum1-28vqqr49b0uin/s-fjlxreels2-18q71ap-working/work-products.bin: -------------------------------------------------------------------------------- 1 | RSIC1.40.0 (73528e339 2019-12-16) -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/incremental/enum1-32a6bsrgv4zgb/s-fjlxregnfl-1w2w0af-working/work-products.bin: -------------------------------------------------------------------------------- 1 | RSIC1.40.0 (73528e339 2019-12-16) -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/libdice.rlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/libdice.rlib -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_chacha-6d3af2a48b82d1f1/run-build-script-build_script_build-6d3af2a48b82d1f1: -------------------------------------------------------------------------------- 1 | 3690cabe728b9f30 -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_xorshift-376d24667acf24aa/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/incremental/dice-6a2mq3ikbm2/s-fmc2p4xxpn-1jgrb4x-working/work-products.bin: -------------------------------------------------------------------------------- 1 | RSIC1.40.0 (73528e339 2019-12-16) -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/incremental/enum1-25ltdcke0hzrx/s-fjhthf351l-1mdoecz-ag6xg07mcwdn/work-products.bin: -------------------------------------------------------------------------------- 1 | RSIC1.35.0 (3c235d560 2019-05-20) -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/incremental/enum1-28vqqr49b0uin/s-fjlxrk0brm-a731bk-1ljxsfs9j1h1f/work-products.bin: -------------------------------------------------------------------------------- 1 | RSIC1.40.0 (73528e339 2019-12-16) -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/incremental/enum1-32a6bsrgv4zgb/s-fjlxrk32kj-1si8n22-1vtfyytxb05ak/work-products.bin: -------------------------------------------------------------------------------- 1 | RSIC1.40.0 (73528e339 2019-12-16) -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/incremental/enum1-3axlrcbj5cyk6/s-fjhthew83r-1g04uf9-3eedswggrmmwz/work-products.bin: -------------------------------------------------------------------------------- 1 | RSIC1.35.0 (3c235d560 2019-05-20) -------------------------------------------------------------------------------- /jan12/add2n/src/lib.rs: -------------------------------------------------------------------------------- 1 | pub fn add2(one:u32,two:u32){ 2 | println!("We are from add2n::add2"); 3 | println!("{} + {} = {}",one,two,one+two); 4 | } -------------------------------------------------------------------------------- /jan12/main_lib2/src/lib.rs: -------------------------------------------------------------------------------- 1 | pub fn add(one:u32,two:u32){ 2 | println!("We are from lib.rs"); 3 | println!("{} + {} = {}",one,two,one+two); 4 | } -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/incremental/dice-17vtkce2jrddh/s-fmc460n5t8-6dz18v-mg9dm3dztj3b/work-products.bin: -------------------------------------------------------------------------------- 1 | RSIC1.40.0 (73528e339 2019-12-16) -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/incremental/dice-1dhow2j3qcf09/s-fmc2p5117x-1or2kgl-working/work-products.bin: -------------------------------------------------------------------------------- 1 | RSIC1.40.0 (73528e339 2019-12-16) -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/incremental/dice-6a2mq3ikbm2/s-fmc2oeu2qr-oe0xin-2y0yaxrog04j8/work-products.bin: -------------------------------------------------------------------------------- 1 | RSIC1.40.0 (73528e339 2019-12-16) -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/build/libc-080a32e0ba3d7568/root-output: -------------------------------------------------------------------------------- 1 | /home/imran82ali/batch3/online/11apr/dice/target/debug/build/libc-080a32e0ba3d7568/out -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/build/rand-39a3e59d1559ed96/root-output: -------------------------------------------------------------------------------- 1 | /home/imran82ali/batch3/online/11apr/dice/target/debug/build/rand-39a3e59d1559ed96/out -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/incremental/dice-1dhow2j3qcf09/s-fmc2oes5ru-1fqgfv8-2y4h3p22u55ug/work-products.bin: -------------------------------------------------------------------------------- 1 | RSIC1.40.0 (73528e339 2019-12-16) -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/incremental/dice-1wudk3gpj7meq/s-fmc460kfkx-ton14h-278p1egfotgrm/work-products.bin: -------------------------------------------------------------------------------- 1 | RSIC1.40.0 (73528e339 2019-12-16) -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/build/rand_pcg-6c105b2d74e471fd/root-output: -------------------------------------------------------------------------------- 1 | /home/imran82ali/batch3/online/11apr/dice/target/debug/build/rand_pcg-6c105b2d74e471fd/out -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/libdice.d: -------------------------------------------------------------------------------- 1 | /home/imran82ali/batch3/online/11apr/dice/target/debug/libdice.rlib: /home/imran82ali/batch3/online/11apr/dice/src/lib.rs 2 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/build/libc-080a32e0ba3d7568/root-output: -------------------------------------------------------------------------------- 1 | /home/imran82ali/batch3/online/11apr/dice/target/rls/debug/build/libc-080a32e0ba3d7568/out -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/build/rand-39a3e59d1559ed96/root-output: -------------------------------------------------------------------------------- 1 | /home/imran82ali/batch3/online/11apr/dice/target/rls/debug/build/rand-39a3e59d1559ed96/out -------------------------------------------------------------------------------- /jan19/hello/src/main.rs: -------------------------------------------------------------------------------- 1 | use pakistan; 2 | fn main() { 3 | println!("Hello, world! "); 4 | pakistan::islamabad::piaic(); 5 | println!("Hello, world!"); 6 | } 7 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/build/rand_chacha-6d3af2a48b82d1f1/root-output: -------------------------------------------------------------------------------- 1 | /home/imran82ali/batch3/online/11apr/dice/target/debug/build/rand_chacha-6d3af2a48b82d1f1/out -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/build/rand_pcg-6c105b2d74e471fd/root-output: -------------------------------------------------------------------------------- 1 | /home/imran82ali/batch3/online/11apr/dice/target/rls/debug/build/rand_pcg-6c105b2d74e471fd/out -------------------------------------------------------------------------------- /dec22/food/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "food" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /jan05/enum1/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "enum1" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /oct20/arith/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "arith" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /oct20/array/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "array" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /oct20/tuple/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "tuple" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/deps/dice-7ed4734a92a5e4ba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/deps/dice-7ed4734a92a5e4ba -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/deps/dice-d30886d5ca457a36: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/deps/dice-d30886d5ca457a36 -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/build/rand_chacha-6d3af2a48b82d1f1/root-output: -------------------------------------------------------------------------------- 1 | /home/imran82ali/batch3/online/11apr/dice/target/rls/debug/build/rand_chacha-6d3af2a48b82d1f1/out -------------------------------------------------------------------------------- /dec15_morning/heap/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "heap" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /dec22/cricket/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "cricket" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /evening_nov24/heap/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "heap" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /evening_oct20/arit/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "arit" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /jan05/enum1/Cargo.lock: -------------------------------------------------------------------------------- 1 | # This file is automatically @generated by Cargo. 2 | # It is not intended for manual editing. 3 | [[package]] 4 | name = "enum1" 5 | version = "0.1.0" 6 | 7 | -------------------------------------------------------------------------------- /jan05/option/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "option" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /oct20/datatype/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "datatype" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /dec01_evening/move1/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "move1" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /dec01_morning/chap04/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "chap04" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /dec08_evening/dangle/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "dangle" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /dec08_morning/dangle/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "dangle" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /dec08_morning/point/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "point" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /evening_oct20/shadow/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "shadow" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /evening_oct27/ifelse/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "ifelse" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /evening_oct27/scope/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "scope" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /morning_oct27/ifelse/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "ifelse" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /morning_oct27/scope/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "scope" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /oct20/shadowing/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "shadowing" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /dec08_evening/reference/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "reference" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /dec08_morning/dangle/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("we got from batch3{}",batch3()); 3 | } 4 | 5 | fn batch3()->String{ 6 | let data=String::from("IoT"); 7 | data 8 | } 9 | -------------------------------------------------------------------------------- /dec08_morning/mut_ref/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "mut_ref" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /dec15_evening/reference/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "reference" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /dec15_evening/struct1/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "struct1" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /dec15_evening/struct2/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "struct2" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /dec15_morning/reference/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "reference" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /dec15_morning/struct1/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "struct1" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /dec15_morning/struct2/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "struct2" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /evening_oct20/compound/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "compound" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /evening_oct20/datatype/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "datatype" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /evening_oct27/stat_ex/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "stat_ex" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /implementation/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "implementation" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /morning_nov24/function/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "function" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /morning_oct27/userinput/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "userinput" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/deps/libdice-a1187a9306336900.rlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/deps/libdice-a1187a9306336900.rlib -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/deps/libdice-a1187a9306336900.rmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/deps/libdice-a1187a9306336900.rmeta -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/deps/liblibc-81b3ebe91fc7814e.rlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/deps/liblibc-81b3ebe91fc7814e.rlib -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/deps/liblibc-81b3ebe91fc7814e.rmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/deps/liblibc-81b3ebe91fc7814e.rmeta -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/deps/librand-731b608ef4b0c191.rlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/deps/librand-731b608ef4b0c191.rlib -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/deps/librand-731b608ef4b0c191.rmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/deps/librand-731b608ef4b0c191.rmeta -------------------------------------------------------------------------------- /online/18apr/kunna/src/lunch.rs: -------------------------------------------------------------------------------- 1 | pub mod menu{ 2 | pub fn dinner(){ 3 | println!("Kunna is available for two serving"); 4 | println!("Your Bill is Rs. 400/-"); 5 | } 6 | } -------------------------------------------------------------------------------- /online/18apr/string_length/src/lib.rs: -------------------------------------------------------------------------------- 1 | pub mod mystring { 2 | pub fn len_calculator(data:String) -> usize { 3 | println!("Name is : {}",data); 4 | data.len() 5 | } 6 | } -------------------------------------------------------------------------------- /dec01_evening/func_return/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "func_return" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /dec01_evening/stringtype/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "stringtype" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /dec22/implementation/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "implementation" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /evening_oct27/userintput/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "userintput" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /jan05/optionpreplude/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "optionpreplude" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/build/rand-39a3e59d1559ed96/output: -------------------------------------------------------------------------------- 1 | cargo:rerun-if-changed=build.rs 2 | cargo:rustc-cfg=rustc_1_25 3 | cargo:rustc-cfg=rustc_1_26 4 | cargo:rustc-cfg=rustc_1_27 5 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/deps/libautocfg-79cb8f5711b5481a.rlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/deps/libautocfg-79cb8f5711b5481a.rlib -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/deps/librand_hc-de64eee1d3c2b3e3.rlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/deps/librand_hc-de64eee1d3c2b3e3.rlib -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/deps/librand_os-3d3de5ad4384f6df.rlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/deps/librand_os-3d3de5ad4384f6df.rlib -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/build/rand-39a3e59d1559ed96/output: -------------------------------------------------------------------------------- 1 | cargo:rerun-if-changed=build.rs 2 | cargo:rustc-cfg=rustc_1_25 3 | cargo:rustc-cfg=rustc_1_26 4 | cargo:rustc-cfg=rustc_1_27 5 | -------------------------------------------------------------------------------- /dec08_evening/rand/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "rand" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | rand = "0.3.14" 9 | -------------------------------------------------------------------------------- /dec08_evening/ref_function/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "ref_function" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /dec08_evening/return_string/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "return_string" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /dec08_morning/owner_return/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "owner_return" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /jan12/main_and_lib/src/lib.rs: -------------------------------------------------------------------------------- 1 | pub fn table(data:u32){ 2 | println!("Next line is from lib.rs"); 3 | for count in 1..3 { 4 | println!("{} * {} = {}",data,count,data*count); 5 | } 6 | } -------------------------------------------------------------------------------- /morning_nov24/loopfunction/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "loopfunction" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /morning_nov24/simplefunction/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "simplefunction" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/deps/libautocfg-79cb8f5711b5481a.rmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/deps/libautocfg-79cb8f5711b5481a.rmeta -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/deps/librand_core-5466fae7cf5a8d1d.rlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/deps/librand_core-5466fae7cf5a8d1d.rlib -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/deps/librand_core-5466fae7cf5a8d1d.rmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/deps/librand_core-5466fae7cf5a8d1d.rmeta -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/deps/librand_core-94dc1c6006443d6f.rlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/deps/librand_core-94dc1c6006443d6f.rlib -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/deps/librand_core-94dc1c6006443d6f.rmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/deps/librand_core-94dc1c6006443d6f.rmeta -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/deps/librand_hc-de64eee1d3c2b3e3.rmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/deps/librand_hc-de64eee1d3c2b3e3.rmeta -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/deps/librand_isaac-a09e4997930d9a7a.rlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/deps/librand_isaac-a09e4997930d9a7a.rlib -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/deps/librand_os-3d3de5ad4384f6df.rmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/deps/librand_os-3d3de5ad4384f6df.rmeta -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/deps/librand_pcg-7cfd0b92d80f3eb1.rlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/deps/librand_pcg-7cfd0b92d80f3eb1.rlib -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/deps/librand_pcg-7cfd0b92d80f3eb1.rmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/deps/librand_pcg-7cfd0b92d80f3eb1.rmeta -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/deps/liblibc-f99a22dcfef0ef25.rmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/rls/debug/deps/liblibc-f99a22dcfef0ef25.rmeta -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/deps/librand-99818d007defc043.rmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/rls/debug/deps/librand-99818d007defc043.rmeta -------------------------------------------------------------------------------- /dec01_evening/random/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "random" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | rand = "0.3.14" 9 | -------------------------------------------------------------------------------- /dec01_morning/random/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "random" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | [dependencies] 8 | rand = "0.3.14" 9 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/deps/librand_chacha-c84fea8c15b32821.rlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/deps/librand_chacha-c84fea8c15b32821.rlib -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/deps/librand_chacha-c84fea8c15b32821.rmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/deps/librand_chacha-c84fea8c15b32821.rmeta -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/deps/librand_isaac-a09e4997930d9a7a.rmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/deps/librand_isaac-a09e4997930d9a7a.rmeta -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/deps/librand_jitter-ffc729094b857dfd.rlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/deps/librand_jitter-ffc729094b857dfd.rlib -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/deps/librand_jitter-ffc729094b857dfd.rmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/deps/librand_jitter-ffc729094b857dfd.rmeta -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/deps/libautocfg-79cb8f5711b5481a.rlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/rls/debug/deps/libautocfg-79cb8f5711b5481a.rlib -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/deps/libautocfg-79cb8f5711b5481a.rmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/rls/debug/deps/libautocfg-79cb8f5711b5481a.rmeta -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/deps/librand_hc-446e0436c83e3e28.rmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/rls/debug/deps/librand_hc-446e0436c83e3e28.rmeta -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/deps/librand_os-7cfce459684d55f0.rmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/rls/debug/deps/librand_os-7cfce459684d55f0.rmeta -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/deps/librand_xorshift-7c16fccce9ec60e7.rlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/deps/librand_xorshift-7c16fccce9ec60e7.rlib -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/deps/librand_xorshift-7c16fccce9ec60e7.rmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/deps/librand_xorshift-7c16fccce9ec60e7.rmeta -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/dice.d: -------------------------------------------------------------------------------- 1 | /home/imran82ali/batch3/online/11apr/dice/target/debug/dice: /home/imran82ali/batch3/online/11apr/dice/src/lib.rs /home/imran82ali/batch3/online/11apr/dice/src/main.rs 2 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/deps/librand_core-39959f2c6e70e7a9.rmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/rls/debug/deps/librand_core-39959f2c6e70e7a9.rmeta -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/deps/librand_core-d68922d88bd6e7a8.rmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/rls/debug/deps/librand_core-d68922d88bd6e7a8.rmeta -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/deps/librand_isaac-9b0bdfbe54a8db40.rmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/rls/debug/deps/librand_isaac-9b0bdfbe54a8db40.rmeta -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/deps/librand_pcg-e9f2401ee2095dd7.rmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/rls/debug/deps/librand_pcg-e9f2401ee2095dd7.rmeta -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/build/libc-92f63d88abbc9702/build-script-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/build/libc-92f63d88abbc9702/build-script-build -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/build/rand-e20a05f02a4f869b/build-script-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/build/rand-e20a05f02a4f869b/build-script-build -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/deps/librand_chacha-7951eb6623c18c6e.rmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/rls/debug/deps/librand_chacha-7951eb6623c18c6e.rmeta -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/deps/librand_jitter-4f6d635543823c79.rmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/rls/debug/deps/librand_jitter-4f6d635543823c79.rmeta -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/build/rand_pcg-89b9588bdd1cef19/build-script-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/build/rand_pcg-89b9588bdd1cef19/build-script-build -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/build/libc-92f63d88abbc9702/build-script-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/rls/debug/build/libc-92f63d88abbc9702/build-script-build -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/build/rand-e20a05f02a4f869b/build-script-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/rls/debug/build/rand-e20a05f02a4f869b/build-script-build -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/deps/librand_xorshift-376d24667acf24aa.rmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/rls/debug/deps/librand_xorshift-376d24667acf24aa.rmeta -------------------------------------------------------------------------------- /dec01_morning/random/src/main.rs: -------------------------------------------------------------------------------- 1 | use rand::Rng; 2 | fn main() { 3 | println!("Guess the number!"); 4 | let secret_number =rand::thread_rng().gen_range(1, 101); 5 | println!("The secret number is: {}", secret_number); 6 | } 7 | -------------------------------------------------------------------------------- /dec08_evening/dangle/src/main.rs: -------------------------------------------------------------------------------- 1 | 2 | fn main() { 3 | let recieve=dessert(); 4 | println!("{}",recieve); 5 | } 6 | 7 | fn dessert()-> String{ 8 | let d1=String::from("Moltan Lava"); 9 | d1 10 | } 11 | -------------------------------------------------------------------------------- /jan12/main_and_lib/mytable/src/lib.rs: -------------------------------------------------------------------------------- 1 | pub fn table2(data:u32){ 2 | println!("Next line is from mytable::table2"); 3 | for count in 1..3 { 4 | println!("{} * {} = {}",data,count,data*count); 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/build/rand_chacha-11fcddb36ce71f77/build-script-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/build/rand_chacha-11fcddb36ce71f77/build-script-build -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/build/rand_pcg-89b9588bdd1cef19/build-script-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/rls/debug/build/rand_pcg-89b9588bdd1cef19/build-script-build -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/build/rand_chacha-11fcddb36ce71f77/build-script-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/rls/debug/build/rand_chacha-11fcddb36ce71f77/build-script-build -------------------------------------------------------------------------------- /dec01_evening/random/src/main.rs: -------------------------------------------------------------------------------- 1 | use rand::Rng; 2 | fn main() { 3 | println!("Random Number Generator"); 4 | let random_number = rand::thread_rng().gen_range(-100, 1001); 5 | println!("Random Number is : {}",random_number); 6 | } 7 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/build/libc-92f63d88abbc9702/build_script_build-92f63d88abbc9702: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/build/libc-92f63d88abbc9702/build_script_build-92f63d88abbc9702 -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/build/rand-e20a05f02a4f869b/build_script_build-e20a05f02a4f869b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/build/rand-e20a05f02a4f869b/build_script_build-e20a05f02a4f869b -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/build/rand_pcg-89b9588bdd1cef19/build_script_build-89b9588bdd1cef19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/build/rand_pcg-89b9588bdd1cef19/build_script_build-89b9588bdd1cef19 -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/build/libc-92f63d88abbc9702/build_script_build-92f63d88abbc9702: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/rls/debug/build/libc-92f63d88abbc9702/build_script_build-92f63d88abbc9702 -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/build/rand-e20a05f02a4f869b/build_script_build-e20a05f02a4f869b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/rls/debug/build/rand-e20a05f02a4f869b/build_script_build-e20a05f02a4f869b -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/build/rand_chacha-11fcddb36ce71f77/build_script_build-11fcddb36ce71f77: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/build/rand_chacha-11fcddb36ce71f77/build_script_build-11fcddb36ce71f77 -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/incremental/enum1-28vqqr49b0uin/s-fjlxreels2-18q71ap-working/dep-graph.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/jan05/enum1/target/rls/debug/incremental/enum1-28vqqr49b0uin/s-fjlxreels2-18q71ap-working/dep-graph.bin -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/incremental/enum1-32a6bsrgv4zgb/s-fjlxregnfl-1w2w0af-working/dep-graph.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/jan05/enum1/target/rls/debug/incremental/enum1-32a6bsrgv4zgb/s-fjlxregnfl-1w2w0af-working/dep-graph.bin -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/build/rand_pcg-89b9588bdd1cef19/build_script_build-89b9588bdd1cef19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/rls/debug/build/rand_pcg-89b9588bdd1cef19/build_script_build-89b9588bdd1cef19 -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/incremental/enum1-28vqqr49b0uin/s-fjlxreels2-18q71ap-working/query-cache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/jan05/enum1/target/rls/debug/incremental/enum1-28vqqr49b0uin/s-fjlxreels2-18q71ap-working/query-cache.bin -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/incremental/enum1-32a6bsrgv4zgb/s-fjlxregnfl-1w2w0af-working/query-cache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/jan05/enum1/target/rls/debug/incremental/enum1-32a6bsrgv4zgb/s-fjlxregnfl-1w2w0af-working/query-cache.bin -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/build/rand_chacha-11fcddb36ce71f77/build_script_build-11fcddb36ce71f77: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/rls/debug/build/rand_chacha-11fcddb36ce71f77/build_script_build-11fcddb36ce71f77 -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/incremental/dice-6a2mq3ikbm2/s-fmc2p4xxpn-1jgrb4x-working/dep-graph.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/rls/debug/incremental/dice-6a2mq3ikbm2/s-fmc2p4xxpn-1jgrb4x-working/dep-graph.bin -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/incremental/enum1-25ltdcke0hzrx/s-fjhthf351l-1mdoecz-ag6xg07mcwdn/dep-graph.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/jan05/enum1/target/rls/debug/incremental/enum1-25ltdcke0hzrx/s-fjhthf351l-1mdoecz-ag6xg07mcwdn/dep-graph.bin -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/incremental/enum1-28vqqr49b0uin/s-fjlxrk0brm-a731bk-1ljxsfs9j1h1f/dep-graph.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/jan05/enum1/target/rls/debug/incremental/enum1-28vqqr49b0uin/s-fjlxrk0brm-a731bk-1ljxsfs9j1h1f/dep-graph.bin -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/incremental/dice-1dhow2j3qcf09/s-fmc2p5117x-1or2kgl-working/dep-graph.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/rls/debug/incremental/dice-1dhow2j3qcf09/s-fmc2p5117x-1or2kgl-working/dep-graph.bin -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/incremental/dice-6a2mq3ikbm2/s-fmc2p4xxpn-1jgrb4x-working/query-cache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/rls/debug/incremental/dice-6a2mq3ikbm2/s-fmc2p4xxpn-1jgrb4x-working/query-cache.bin -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/incremental/enum1-25ltdcke0hzrx/s-fjhthf351l-1mdoecz-ag6xg07mcwdn/query-cache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/jan05/enum1/target/rls/debug/incremental/enum1-25ltdcke0hzrx/s-fjhthf351l-1mdoecz-ag6xg07mcwdn/query-cache.bin -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/incremental/enum1-28vqqr49b0uin/s-fjlxrk0brm-a731bk-1ljxsfs9j1h1f/query-cache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/jan05/enum1/target/rls/debug/incremental/enum1-28vqqr49b0uin/s-fjlxrk0brm-a731bk-1ljxsfs9j1h1f/query-cache.bin -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/incremental/enum1-32a6bsrgv4zgb/s-fjlxrk32kj-1si8n22-1vtfyytxb05ak/dep-graph.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/jan05/enum1/target/rls/debug/incremental/enum1-32a6bsrgv4zgb/s-fjlxrk32kj-1si8n22-1vtfyytxb05ak/dep-graph.bin -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/incremental/enum1-32a6bsrgv4zgb/s-fjlxrk32kj-1si8n22-1vtfyytxb05ak/query-cache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/jan05/enum1/target/rls/debug/incremental/enum1-32a6bsrgv4zgb/s-fjlxrk32kj-1si8n22-1vtfyytxb05ak/query-cache.bin -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/incremental/enum1-3axlrcbj5cyk6/s-fjhthew83r-1g04uf9-3eedswggrmmwz/dep-graph.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/jan05/enum1/target/rls/debug/incremental/enum1-3axlrcbj5cyk6/s-fjhthew83r-1g04uf9-3eedswggrmmwz/dep-graph.bin -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/incremental/enum1-3axlrcbj5cyk6/s-fjhthew83r-1g04uf9-3eedswggrmmwz/query-cache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/jan05/enum1/target/rls/debug/incremental/enum1-3axlrcbj5cyk6/s-fjhthew83r-1g04uf9-3eedswggrmmwz/query-cache.bin -------------------------------------------------------------------------------- /oct20/array/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | let list = [22,33,44,55,66]; 3 | print!("Complete Array : {:?} \n\n\n",list); 4 | 5 | print!("Fourth Index {} \n\n\n\n",list[4]); 6 | let temp = 8; 7 | print!("Fourth Index {} \n",list[8]); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/dep-graph.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/dep-graph.bin -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/query-cache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/query-cache.bin -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3cp0s4422xzp2/s-fmc2tc1yo3-18tck4t-65ywtffhphsh/dep-graph.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3cp0s4422xzp2/s-fmc2tc1yo3-18tck4t-65ywtffhphsh/dep-graph.bin -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3cp0s4422xzp2/s-fmc2tc1yo3-18tck4t-65ywtffhphsh/query-cache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3cp0s4422xzp2/s-fmc2tc1yo3-18tck4t-65ywtffhphsh/query-cache.bin -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/dep-graph.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/dep-graph.bin -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/query-cache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/query-cache.bin -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/incremental/dice-1dhow2j3qcf09/s-fmc2p5117x-1or2kgl-working/query-cache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/rls/debug/incremental/dice-1dhow2j3qcf09/s-fmc2p5117x-1or2kgl-working/query-cache.bin -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/incremental/dice-6a2mq3ikbm2/s-fmc2oeu2qr-oe0xin-2y0yaxrog04j8/dep-graph.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/rls/debug/incremental/dice-6a2mq3ikbm2/s-fmc2oeu2qr-oe0xin-2y0yaxrog04j8/dep-graph.bin -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/deps/dice-d30886d5ca457a36.d: -------------------------------------------------------------------------------- 1 | /home/imran82ali/batch3/online/11apr/dice/target/debug/deps/dice-d30886d5ca457a36: src/main.rs 2 | 3 | /home/imran82ali/batch3/online/11apr/dice/target/debug/deps/dice-d30886d5ca457a36.d: src/main.rs 4 | 5 | src/main.rs: 6 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/8r50mkfrjxuh07l.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/8r50mkfrjxuh07l.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/a2a0qsl17epkalq.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/a2a0qsl17epkalq.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/work-products.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/work-products.bin -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3cp0s4422xzp2/s-fmc2tc1yo3-18tck4t-65ywtffhphsh/a479nbwdeeuyizp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3cp0s4422xzp2/s-fmc2tc1yo3-18tck4t-65ywtffhphsh/a479nbwdeeuyizp.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3cp0s4422xzp2/s-fmc2tc1yo3-18tck4t-65ywtffhphsh/tgrarxqq47h5udf.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3cp0s4422xzp2/s-fmc2tc1yo3-18tck4t-65ywtffhphsh/tgrarxqq47h5udf.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3cp0s4422xzp2/s-fmc2tc1yo3-18tck4t-65ywtffhphsh/tqg5xs6xxmf14x0.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3cp0s4422xzp2/s-fmc2tc1yo3-18tck4t-65ywtffhphsh/tqg5xs6xxmf14x0.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3cp0s4422xzp2/s-fmc2tc1yo3-18tck4t-65ywtffhphsh/work-products.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3cp0s4422xzp2/s-fmc2tc1yo3-18tck4t-65ywtffhphsh/work-products.bin -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3cp0s4422xzp2/s-fmc2tc1yo3-18tck4t-65ywtffhphsh/zqrxympiw7p2cwj.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3cp0s4422xzp2/s-fmc2tc1yo3-18tck4t-65ywtffhphsh/zqrxympiw7p2cwj.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/e4mjgx0ncyo5hzd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/e4mjgx0ncyo5hzd.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/iulsy1t2zvxegxh.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/iulsy1t2zvxegxh.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/o9sbvbgj6kn39bl.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/o9sbvbgj6kn39bl.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/ri6fvex121xqmj6.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/ri6fvex121xqmj6.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/ssuc5rgqxfjtlxw.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/ssuc5rgqxfjtlxw.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/tyyhh3j9wpitsqw.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/tyyhh3j9wpitsqw.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/vm655eno3d65ikv.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/vm655eno3d65ikv.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/work-products.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/work-products.bin -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/x8665tiuqoe5p50.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/x8665tiuqoe5p50.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/xq1wt2sz09uh2pq.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/xq1wt2sz09uh2pq.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/yjfe8mtauty4cf1.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/yjfe8mtauty4cf1.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/zptmb8bjwwwmsta.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/zptmb8bjwwwmsta.o -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/incremental/dice-17vtkce2jrddh/s-fmc460n5t8-6dz18v-mg9dm3dztj3b/dep-graph.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/rls/debug/incremental/dice-17vtkce2jrddh/s-fmc460n5t8-6dz18v-mg9dm3dztj3b/dep-graph.bin -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/incremental/dice-1wudk3gpj7meq/s-fmc460kfkx-ton14h-278p1egfotgrm/dep-graph.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/rls/debug/incremental/dice-1wudk3gpj7meq/s-fmc460kfkx-ton14h-278p1egfotgrm/dep-graph.bin -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/incremental/dice-6a2mq3ikbm2/s-fmc2oeu2qr-oe0xin-2y0yaxrog04j8/query-cache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/rls/debug/incremental/dice-6a2mq3ikbm2/s-fmc2oeu2qr-oe0xin-2y0yaxrog04j8/query-cache.bin -------------------------------------------------------------------------------- /online/18apr/length_check_bin/src/main.rs: -------------------------------------------------------------------------------- 1 | use string_length; 2 | //use std::io; 3 | 4 | fn main() { 5 | let name = "Haseeb".to_string(); 6 | let result = string_length::mystring::len_calculator(name); 7 | println!("Returned length is {}",result); 8 | 9 | } 10 | -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/deps/enum1-1a6eafb5bb735a93.d: -------------------------------------------------------------------------------- 1 | /home/imran82ali/batch3/jan05/enum1/target/rls/debug/deps/enum1-1a6eafb5bb735a93.rmeta: src/main.rs 2 | 3 | /home/imran82ali/batch3/jan05/enum1/target/rls/debug/deps/enum1-1a6eafb5bb735a93.d: src/main.rs 4 | 5 | src/main.rs: 6 | -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/deps/enum1-4caa6f8ba5b4ec87.d: -------------------------------------------------------------------------------- 1 | /home/imran82ali/batch3/jan05/enum1/target/rls/debug/deps/enum1-4caa6f8ba5b4ec87.rmeta: src/main.rs 2 | 3 | /home/imran82ali/batch3/jan05/enum1/target/rls/debug/deps/enum1-4caa6f8ba5b4ec87.d: src/main.rs 4 | 5 | src/main.rs: 6 | -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/deps/enum1-4f9ce1b0c4e59e7e.d: -------------------------------------------------------------------------------- 1 | /home/imran82ali/batch3/jan05/enum1/target/rls/debug/deps/enum1-4f9ce1b0c4e59e7e.rmeta: src/main.rs 2 | 3 | /home/imran82ali/batch3/jan05/enum1/target/rls/debug/deps/enum1-4f9ce1b0c4e59e7e.d: src/main.rs 4 | 5 | src/main.rs: 6 | -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/deps/enum1-d23646d1de3895ce.d: -------------------------------------------------------------------------------- 1 | /home/imran82ali/batch3/jan05/enum1/target/rls/debug/deps/enum1-d23646d1de3895ce.rmeta: src/main.rs 2 | 3 | /home/imran82ali/batch3/jan05/enum1/target/rls/debug/deps/enum1-d23646d1de3895ce.d: src/main.rs 4 | 5 | src/main.rs: 6 | -------------------------------------------------------------------------------- /jan12/add2n/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "add2n" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 | 9 | [dependencies] 10 | -------------------------------------------------------------------------------- /jan12/chap6/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "chap6" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 | 9 | [dependencies] 10 | -------------------------------------------------------------------------------- /jan26/file/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "file" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 | 9 | [dependencies] 10 | -------------------------------------------------------------------------------- /jan26/hash/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "hash" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 | 9 | [dependencies] 10 | -------------------------------------------------------------------------------- /jan26/hash2/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "hash2" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 | 9 | [dependencies] 10 | -------------------------------------------------------------------------------- /jan26/panic/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "panic" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 | 9 | [dependencies] 10 | -------------------------------------------------------------------------------- /morning_nov24/function/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | let number:u32 = 233; 3 | let receive = square(number); 4 | println!("{:?}",receive); 5 | } 6 | fn square(val: u32) -> (u32,u32) { //Function Signature 7 | println!("{}",val); 8 | (val,val*val) 9 | 10 | } -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/19wu793gio5sdbo9.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/19wu793gio5sdbo9.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/1qidbf4r30hf09bl.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/1qidbf4r30hf09bl.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/1zoj8ai48we65zig.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/1zoj8ai48we65zig.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/2gid72xdlukoljmv.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/2gid72xdlukoljmv.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/3c196nfru1p3vgks.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/3c196nfru1p3vgks.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/3e6curmh4nutj3kk.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/3e6curmh4nutj3kk.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/3rtczfdvux7b7f2c.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/3rtczfdvux7b7f2c.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/3wgjbictrh0jnymq.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/3wgjbictrh0jnymq.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/4dj04fnr8wcso9f7.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/4dj04fnr8wcso9f7.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/4rvbssu79yhoc6qj.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/4rvbssu79yhoc6qj.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/57iohnqp1cnw95o8.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/57iohnqp1cnw95o8.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/5c48v7bcp7du1jh7.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/5c48v7bcp7du1jh7.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/5eu68n8k3zsz5b0n.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/5eu68n8k3zsz5b0n.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/8r50mkfrjxuh07l.bc.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/8r50mkfrjxuh07l.bc.z -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/a2a0qsl17epkalq.bc.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/a2a0qsl17epkalq.bc.z -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3cp0s4422xzp2/s-fmc2tc1yo3-18tck4t-65ywtffhphsh/18q1qz29nxm9ncyl.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3cp0s4422xzp2/s-fmc2tc1yo3-18tck4t-65ywtffhphsh/18q1qz29nxm9ncyl.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3cp0s4422xzp2/s-fmc2tc1yo3-18tck4t-65ywtffhphsh/1bh8566b3dsm163d.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3cp0s4422xzp2/s-fmc2tc1yo3-18tck4t-65ywtffhphsh/1bh8566b3dsm163d.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3cp0s4422xzp2/s-fmc2tc1yo3-18tck4t-65ywtffhphsh/2id9r4dwlfqwx4nx.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3cp0s4422xzp2/s-fmc2tc1yo3-18tck4t-65ywtffhphsh/2id9r4dwlfqwx4nx.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3cp0s4422xzp2/s-fmc2tc1yo3-18tck4t-65ywtffhphsh/2wwbauhjmpweexzl.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3cp0s4422xzp2/s-fmc2tc1yo3-18tck4t-65ywtffhphsh/2wwbauhjmpweexzl.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3cp0s4422xzp2/s-fmc2tc1yo3-18tck4t-65ywtffhphsh/39uep751m8xxk72h.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3cp0s4422xzp2/s-fmc2tc1yo3-18tck4t-65ywtffhphsh/39uep751m8xxk72h.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3cp0s4422xzp2/s-fmc2tc1yo3-18tck4t-65ywtffhphsh/3dotew999z99vji0.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3cp0s4422xzp2/s-fmc2tc1yo3-18tck4t-65ywtffhphsh/3dotew999z99vji0.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3cp0s4422xzp2/s-fmc2tc1yo3-18tck4t-65ywtffhphsh/45dkp6rcygfwnogo.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3cp0s4422xzp2/s-fmc2tc1yo3-18tck4t-65ywtffhphsh/45dkp6rcygfwnogo.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3cp0s4422xzp2/s-fmc2tc1yo3-18tck4t-65ywtffhphsh/4mjno6zumrrev94b.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3cp0s4422xzp2/s-fmc2tc1yo3-18tck4t-65ywtffhphsh/4mjno6zumrrev94b.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/10cands2amnbw3vv.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/10cands2amnbw3vv.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/13b38gitrnpdsvyr.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/13b38gitrnpdsvyr.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/1ulu0lxkbpgj842d.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/1ulu0lxkbpgj842d.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/1v1alqb72y7dt20b.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/1v1alqb72y7dt20b.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/1xeiea4c20p1g5pg.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/1xeiea4c20p1g5pg.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/1xmqikt6gjifmfg6.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/1xmqikt6gjifmfg6.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/21o9rir8hopr48gm.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/21o9rir8hopr48gm.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/29bu5swbyy0zkwvq.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/29bu5swbyy0zkwvq.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/2h9vm8d0d2wytepf.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/2h9vm8d0d2wytepf.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/2kjvxy20toei2lhu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/2kjvxy20toei2lhu.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/35t23kq5eqs7ln1l.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/35t23kq5eqs7ln1l.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/3b59s58umsfy1r9h.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/3b59s58umsfy1r9h.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/3ef0sysr6bdq3yii.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/3ef0sysr6bdq3yii.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/3fjbjyaihac011nb.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/3fjbjyaihac011nb.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/3ggjusom80q0dogw.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/3ggjusom80q0dogw.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/3nuyfsizodoy7zps.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/3nuyfsizodoy7zps.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/3qln3x89pv64ackm.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/3qln3x89pv64ackm.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/3t1csf3t9rq73j6m.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/3t1csf3t9rq73j6m.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/3x34u0540gkaoli0.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/3x34u0540gkaoli0.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/454nr7s4w0oukzjh.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/454nr7s4w0oukzjh.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/49pj7euewu6r9fvj.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/49pj7euewu6r9fvj.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/4gna40g7jl16kcdp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/4gna40g7jl16kcdp.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/4oencdeo6gt8yqau.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/4oencdeo6gt8yqau.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/4uiyopzh4u147lkp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/4uiyopzh4u147lkp.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/4xmgq04uv5207axh.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/4xmgq04uv5207axh.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/4yvzufn276p53kv3.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/4yvzufn276p53kv3.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/4zg0cl3g2li1zfta.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/4zg0cl3g2li1zfta.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/50dhos8zd9freemu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/50dhos8zd9freemu.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/554pzlh9ur9npc5m.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/554pzlh9ur9npc5m.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/56yhwn232vs489ps.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/56yhwn232vs489ps.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/5e2tis45wpqncbo1.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/5e2tis45wpqncbo1.o -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/5g9m3p8ri9h9fu3m.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-3mylnbnvjmn02/s-fmc461chqw-f6ib49-14eykjl1tut2b/5g9m3p8ri9h9fu3m.o -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/incremental/dice-17vtkce2jrddh/s-fmc460n5t8-6dz18v-mg9dm3dztj3b/query-cache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/rls/debug/incremental/dice-17vtkce2jrddh/s-fmc460n5t8-6dz18v-mg9dm3dztj3b/query-cache.bin -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/incremental/dice-1dhow2j3qcf09/s-fmc2oes5ru-1fqgfv8-2y4h3p22u55ug/dep-graph.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/rls/debug/incremental/dice-1dhow2j3qcf09/s-fmc2oes5ru-1fqgfv8-2y4h3p22u55ug/dep-graph.bin -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/incremental/dice-1dhow2j3qcf09/s-fmc2oes5ru-1fqgfv8-2y4h3p22u55ug/query-cache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/rls/debug/incremental/dice-1dhow2j3qcf09/s-fmc2oes5ru-1fqgfv8-2y4h3p22u55ug/query-cache.bin -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/incremental/dice-1wudk3gpj7meq/s-fmc460kfkx-ton14h-278p1egfotgrm/query-cache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/rls/debug/incremental/dice-1wudk3gpj7meq/s-fmc460kfkx-ton14h-278p1egfotgrm/query-cache.bin -------------------------------------------------------------------------------- /jan12/module/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "module" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 | 9 | [dependencies] 10 | -------------------------------------------------------------------------------- /jan19/string/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "string" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 | 9 | [dependencies] 10 | -------------------------------------------------------------------------------- /jan19/vector/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "vector" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 | 9 | [dependencies] 10 | -------------------------------------------------------------------------------- /jan26/panic2/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "panic2" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 | 9 | [dependencies] 10 | -------------------------------------------------------------------------------- /jan26/revise/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "revise" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 | 9 | [dependencies] 10 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/19wu793gio5sdbo9.bc.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/19wu793gio5sdbo9.bc.z -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/1qidbf4r30hf09bl.bc.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/1qidbf4r30hf09bl.bc.z -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/1zoj8ai48we65zig.bc.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/1zoj8ai48we65zig.bc.z -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/2gid72xdlukoljmv.bc.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/2gid72xdlukoljmv.bc.z -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/3c196nfru1p3vgks.bc.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/3c196nfru1p3vgks.bc.z -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/3e6curmh4nutj3kk.bc.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/3e6curmh4nutj3kk.bc.z -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/3rtczfdvux7b7f2c.bc.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/3rtczfdvux7b7f2c.bc.z -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/3wgjbictrh0jnymq.bc.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/3wgjbictrh0jnymq.bc.z -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/4dj04fnr8wcso9f7.bc.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/4dj04fnr8wcso9f7.bc.z -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/4rvbssu79yhoc6qj.bc.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/4rvbssu79yhoc6qj.bc.z -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/57iohnqp1cnw95o8.bc.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/57iohnqp1cnw95o8.bc.z -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/5c48v7bcp7du1jh7.bc.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/5c48v7bcp7du1jh7.bc.z -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/5eu68n8k3zsz5b0n.bc.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PIAIC-IOT/Quarter1_Batch3/HEAD/online/11apr/dice/target/debug/incremental/dice-255rlx95aqevp/s-fmc45ize3g-10xxpbm-vpkirhmuizfc/5eu68n8k3zsz5b0n.bc.z -------------------------------------------------------------------------------- /online/apr04/one/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "one" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 | 9 | [dependencies] 10 | -------------------------------------------------------------------------------- /online/apr04/temp/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "temp" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 | 9 | [dependencies] 10 | -------------------------------------------------------------------------------- /jan12/resultenum/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "resultenum" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 | 9 | [dependencies] 10 | -------------------------------------------------------------------------------- /jan26/fileread/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "fileread" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 | 9 | [dependencies] 10 | -------------------------------------------------------------------------------- /jan26/fileread2/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "fileread2" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 | 9 | [dependencies] 10 | -------------------------------------------------------------------------------- /morning_nov24/loopfunction/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | quiz(); 3 | } 4 | 5 | fn quiz(){ 6 | let mut loopdata=0; 7 | for data in 0..20 { 8 | println!("Value of data is {}",data); 9 | loopdata=data; 10 | } 11 | println!("Value of data is {}",loopdata); 12 | } -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/build/libc-080a32e0ba3d7568/output: -------------------------------------------------------------------------------- 1 | cargo:rustc-cfg=freebsd11 2 | cargo:rustc-cfg=libc_priv_mod_use 3 | cargo:rustc-cfg=libc_union 4 | cargo:rustc-cfg=libc_const_size_of 5 | cargo:rustc-cfg=libc_align 6 | cargo:rustc-cfg=libc_core_cvoid 7 | cargo:rustc-cfg=libc_packedN 8 | -------------------------------------------------------------------------------- /online/18apr/kunna/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "kunna" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 | 9 | [dependencies] 10 | -------------------------------------------------------------------------------- /online/apr04/enum1/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "enum1" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 | 9 | [dependencies] 10 | -------------------------------------------------------------------------------- /online/apr04/loop1/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "loop1" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 | 9 | [dependencies] 10 | -------------------------------------------------------------------------------- /jan19/struct_enum/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "struct_enum" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 | 9 | [dependencies] 10 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/build/libc-080a32e0ba3d7568/output: -------------------------------------------------------------------------------- 1 | cargo:rustc-cfg=freebsd11 2 | cargo:rustc-cfg=libc_priv_mod_use 3 | cargo:rustc-cfg=libc_union 4 | cargo:rustc-cfg=libc_const_size_of 5 | cargo:rustc-cfg=libc_align 6 | cargo:rustc-cfg=libc_core_cvoid 7 | cargo:rustc-cfg=libc_packedN 8 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/deps/dice-4352c4e8dc038f30.d: -------------------------------------------------------------------------------- 1 | /home/imran82ali/batch3/online/11apr/dice/target/rls/debug/deps/dice-4352c4e8dc038f30.rmeta: src/main.rs 2 | 3 | /home/imran82ali/batch3/online/11apr/dice/target/rls/debug/deps/dice-4352c4e8dc038f30.d: src/main.rs 4 | 5 | src/main.rs: 6 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/deps/dice-9bbf44ebb20a55cc.d: -------------------------------------------------------------------------------- 1 | /home/imran82ali/batch3/online/11apr/dice/target/rls/debug/deps/dice-9bbf44ebb20a55cc.rmeta: src/main.rs 2 | 3 | /home/imran82ali/batch3/online/11apr/dice/target/rls/debug/deps/dice-9bbf44ebb20a55cc.d: src/main.rs 4 | 5 | src/main.rs: 6 | -------------------------------------------------------------------------------- /online/apr04/struct1/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "struct1" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 | 9 | [dependencies] 10 | -------------------------------------------------------------------------------- /dec08_evening/rand/src/main.rs: -------------------------------------------------------------------------------- 1 | use rand::Rng; 2 | fn main() { 3 | let number = rand::thread_rng().gen_range(1.0, 51.0); 4 | 5 | println!("The secret number is: {}", number); 6 | let number1 = rand::thread_rng().gen_range(1.0, 51.0); 7 | println!("The secret number is: {}", number1); 8 | } 9 | -------------------------------------------------------------------------------- /jan12/main_and_lib/mytable/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "mytable" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 | 9 | [dependencies] 10 | -------------------------------------------------------------------------------- /jan19/hello/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "hello" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 | 9 | [dependencies] 10 | pakistan = "0.1.0" -------------------------------------------------------------------------------- /online/11apr/dice/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "dice" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 | 9 | [dependencies] 10 | rand = "0.6.0" -------------------------------------------------------------------------------- /online/11apr/user_input/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "user_input" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 | 9 | [dependencies] 10 | -------------------------------------------------------------------------------- /online/apr04/len_option/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "len_option" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 | 9 | [dependencies] 10 | -------------------------------------------------------------------------------- /jan19/hellp/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "hellp" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 | 9 | [dependencies] 10 | islamabad = "0.1.0" 11 | -------------------------------------------------------------------------------- /online/18apr/string_length/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "string_length" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 | 9 | [dependencies] 10 | -------------------------------------------------------------------------------- /jan26/encrypt/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "encrypt" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 | 9 | [dependencies] 10 | short-crypt = "1.0.14" -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/deps/dice-7ed4734a92a5e4ba.d: -------------------------------------------------------------------------------- 1 | /home/imran82ali/batch3/online/11apr/dice/target/debug/deps/dice-7ed4734a92a5e4ba: src/main.rs src/lib.rs 2 | 3 | /home/imran82ali/batch3/online/11apr/dice/target/debug/deps/dice-7ed4734a92a5e4ba.d: src/main.rs src/lib.rs 4 | 5 | src/main.rs: 6 | src/lib.rs: 7 | -------------------------------------------------------------------------------- /online/11apr/literal/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "literal" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 | 9 | [dependencies] 10 | rand = "0.6.0" 11 | -------------------------------------------------------------------------------- /evening_oct27/stat_ex/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | let out = 5; 3 | 4 | let val = { 5 | let iner = 3; 6 | println!("The inner value is: {}", iner); 7 | println!("The out value is: {}", out); 8 | iner + 1 9 | 10 | }; 11 | println!("The value is: {}", val); 12 | } 13 | -------------------------------------------------------------------------------- /jan12/main_lib2/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "main_lib2" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 | 9 | [dependencies] 10 | add2n = {path = "../add2n"} 11 | -------------------------------------------------------------------------------- /jan19/module1/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "module1" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 | 9 | [dependencies] 10 | pakistan = {path = "../pakistan"} 11 | -------------------------------------------------------------------------------- /jan12/main_and_lib/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "main_and_lib" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 | 9 | [dependencies] 10 | mytable = {path = "mytable"} 11 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/libc-080a32e0ba3d7568/run-build-script-build_script_build-080a32e0ba3d7568.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"","target":0,"profile":0,"path":0,"deps":[[6647251100247846749,"build_script_build",false,9809178652251598352]],"local":[{"Precalculated":"0.2.68"}],"rustflags":[],"metadata":0} -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/deps/dice-10398e5bba7076de.d: -------------------------------------------------------------------------------- 1 | /home/imran82ali/batch3/online/11apr/dice/target/rls/debug/deps/dice-10398e5bba7076de.rmeta: src/main.rs src/lib.rs 2 | 3 | /home/imran82ali/batch3/online/11apr/dice/target/rls/debug/deps/dice-10398e5bba7076de.d: src/main.rs src/lib.rs 4 | 5 | src/main.rs: 6 | src/lib.rs: 7 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/deps/dice-738593c8811e521d.d: -------------------------------------------------------------------------------- 1 | /home/imran82ali/batch3/online/11apr/dice/target/rls/debug/deps/dice-738593c8811e521d.rmeta: src/main.rs src/lib.rs 2 | 3 | /home/imran82ali/batch3/online/11apr/dice/target/rls/debug/deps/dice-738593c8811e521d.d: src/main.rs src/lib.rs 4 | 5 | src/main.rs: 6 | src/lib.rs: 7 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/libc-080a32e0ba3d7568/run-build-script-build_script_build-080a32e0ba3d7568.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"","target":0,"profile":0,"path":0,"deps":[[6647251100247846749,"build_script_build",false,9809178652251598352]],"local":[{"Precalculated":"0.2.68"}],"rustflags":[],"metadata":0} -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/build/rand-39a3e59d1559ed96/out/probe0.ll: -------------------------------------------------------------------------------- 1 | ; ModuleID = 'probe0.3a1fbbbh-cgu.0' 2 | source_filename = "probe0.3a1fbbbh-cgu.0" 3 | target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128" 4 | target triple = "x86_64-unknown-linux-gnu" 5 | 6 | !llvm.module.flags = !{!0} 7 | 8 | !0 = !{i32 2, !"RtLibUseGOT", i32 1} 9 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/build/rand_pcg-6c105b2d74e471fd/out/probe0.ll: -------------------------------------------------------------------------------- 1 | ; ModuleID = 'probe0.3a1fbbbh-cgu.0' 2 | source_filename = "probe0.3a1fbbbh-cgu.0" 3 | target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128" 4 | target triple = "x86_64-unknown-linux-gnu" 5 | 6 | !llvm.module.flags = !{!0} 7 | 8 | !0 = !{i32 2, !"RtLibUseGOT", i32 1} 9 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/build/rand-39a3e59d1559ed96/out/probe0.ll: -------------------------------------------------------------------------------- 1 | ; ModuleID = 'probe0.3a1fbbbh-cgu.0' 2 | source_filename = "probe0.3a1fbbbh-cgu.0" 3 | target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128" 4 | target triple = "x86_64-unknown-linux-gnu" 5 | 6 | !llvm.module.flags = !{!0} 7 | 8 | !0 = !{i32 2, !"RtLibUseGOT", i32 1} 9 | -------------------------------------------------------------------------------- /jan26/encrypt/src/main.rs: -------------------------------------------------------------------------------- 1 | extern crate short_crypt; 2 | use short_crypt::ShortCrypt; 3 | 4 | fn main() { 5 | let sc = ShortCrypt::new("PIAIC"); 6 | println!("PEM tag: {:#?}", sc); 7 | let data = sc.encrypt_to_url_component("welcome"); 8 | println!("Encrypted data: {}", data); 9 | 10 | } 11 | 12 | 13 | //tinyurl.com/iotjan26 14 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/build/rand_chacha-6d3af2a48b82d1f1/out/probe0.ll: -------------------------------------------------------------------------------- 1 | ; ModuleID = 'probe0.3a1fbbbh-cgu.0' 2 | source_filename = "probe0.3a1fbbbh-cgu.0" 3 | target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128" 4 | target triple = "x86_64-unknown-linux-gnu" 5 | 6 | !llvm.module.flags = !{!0} 7 | 8 | !0 = !{i32 2, !"RtLibUseGOT", i32 1} 9 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/build/rand_chacha-6d3af2a48b82d1f1/out/probe0.ll: -------------------------------------------------------------------------------- 1 | ; ModuleID = 'probe0.3a1fbbbh-cgu.0' 2 | source_filename = "probe0.3a1fbbbh-cgu.0" 3 | target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128" 4 | target triple = "x86_64-unknown-linux-gnu" 5 | 6 | !llvm.module.flags = !{!0} 7 | 8 | !0 = !{i32 2, !"RtLibUseGOT", i32 1} 9 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/build/rand_pcg-6c105b2d74e471fd/out/probe0.ll: -------------------------------------------------------------------------------- 1 | ; ModuleID = 'probe0.3a1fbbbh-cgu.0' 2 | source_filename = "probe0.3a1fbbbh-cgu.0" 3 | target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128" 4 | target triple = "x86_64-unknown-linux-gnu" 5 | 6 | !llvm.module.flags = !{!0} 7 | 8 | !0 = !{i32 2, !"RtLibUseGOT", i32 1} 9 | -------------------------------------------------------------------------------- /online/18apr/length_check_bin/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "length_check_bin" 3 | version = "0.1.0" 4 | authors = ["imran82ali "] 5 | edition = "2018" 6 | 7 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 | 9 | [dependencies] 10 | string_length = {path = "../string_length"} -------------------------------------------------------------------------------- /jan05/option/src/main.rs: -------------------------------------------------------------------------------- 1 | #[derive(Debug)] 2 | enum Option { 3 | Some(u8), 4 | None 5 | } 6 | 7 | fn main() { 8 | let data1 = Option::Some(10); 9 | println!("{:?}",data1); 10 | //let data3:u8=20; 11 | //let result = data1+data3; 12 | //println!("{:?}",data1); 13 | let data2=Option::None; 14 | println!("{:?}",data2); 15 | } 16 | -------------------------------------------------------------------------------- /dec08_evening/ref_function/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | let mut meal1=String::from("Kabuli Plao"); 3 | food(&mut meal1); 4 | println!("in main : {}",meal1); 5 | 6 | } 7 | 8 | fn food(m1:&mut String){ 9 | println!("We are in food function"); 10 | println!("{}",m1); 11 | m1.push_str(" + Kofta"); 12 | println!("{}",m1); 13 | 14 | } 15 | -------------------------------------------------------------------------------- /dec15_morning/reference/src/main.rs: -------------------------------------------------------------------------------- 1 | 2 | fn main() { 3 | let mut food1=String::from("Paratha"); 4 | let food2= &mut food1; 5 | println!("{} ",food2); 6 | let mut food3=String::from("Nan "); 7 | let food4=&mut food3; 8 | println!("{} ",food4); 9 | food4.push_str(" Qatai"); 10 | println!("{} ",food4); 11 | println!("{} ",food3); 12 | 13 | 14 | 15 | } 16 | -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/.fingerprint/enum1-4caa6f8ba5b4ec87/bin-enum1-4caa6f8ba5b4ec87.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"[]","target":6985183714674466115,"profile":14891217944882224483,"path":1036222786711178230,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/enum1-4caa6f8ba5b4ec87/dep-bin-enum1-4caa6f8ba5b4ec87"}}],"rustflags":[],"metadata":10032151488815588541} -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/deps/dice-a1187a9306336900.d: -------------------------------------------------------------------------------- 1 | /home/imran82ali/batch3/online/11apr/dice/target/debug/deps/dice-a1187a9306336900.rmeta: src/lib.rs 2 | 3 | /home/imran82ali/batch3/online/11apr/dice/target/debug/deps/libdice-a1187a9306336900.rlib: src/lib.rs 4 | 5 | /home/imran82ali/batch3/online/11apr/dice/target/debug/deps/dice-a1187a9306336900.d: src/lib.rs 6 | 7 | src/lib.rs: 8 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/dice-4352c4e8dc038f30/bin-dice-4352c4e8dc038f30.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"[]","target":764035618455586800,"profile":14891217944882224483,"path":1036222786711178230,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/dice-4352c4e8dc038f30/dep-bin-dice-4352c4e8dc038f30"}}],"rustflags":[],"metadata":10032151488815588541} -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/.fingerprint/enum1-d23646d1de3895ce/bin-enum1-d23646d1de3895ce.json: -------------------------------------------------------------------------------- 1 | {"rustc":11662075050264400882,"features":"[]","target":6985183714674466115,"profile":14891217944882224483,"path":1036222786711178230,"deps":[],"local":[{"MtimeBased":[[1578396808,656314488],".fingerprint/enum1-d23646d1de3895ce/dep-bin-enum1-d23646d1de3895ce"]}],"rustflags":[],"metadata":10032151488815588541} -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand-39a3e59d1559ed96/run-build-script-build_script_build-39a3e59d1559ed96.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"","target":0,"profile":0,"path":0,"deps":[[8764374909478324557,"build_script_build",false,9308447646124948529]],"local":[{"RerunIfChanged":{"output":"debug/build/rand-39a3e59d1559ed96/output","paths":["build.rs"]}}],"rustflags":[],"metadata":0} -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/.fingerprint/enum1-4f9ce1b0c4e59e7e/test-bin-enum1-4f9ce1b0c4e59e7e.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"[]","target":6985183714674466115,"profile":1647870076477133176,"path":1036222786711178230,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/enum1-4f9ce1b0c4e59e7e/dep-test-bin-enum1-4f9ce1b0c4e59e7e"}}],"rustflags":[],"metadata":10032151488815588541} -------------------------------------------------------------------------------- /oct20/tuple/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | let mut data = ("PIAIC", 3000, 67.8); 3 | let (org, fee, percent) = data; 4 | println!("The fee is: {}", fee); 5 | let org1 = data.0; 6 | println!("The Organization is: {}", org1); 7 | 8 | println!("Complete Tuple: {:?}", data); 9 | 10 | data.1 = 2000; 11 | 12 | println!("Update Tuple: {:?}", data); 13 | } 14 | 15 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/autocfg-79cb8f5711b5481a/lib-autocfg-79cb8f5711b5481a.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"[]","target":8574161726611873773,"profile":9935990280773120926,"path":15538127486869908267,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/autocfg-79cb8f5711b5481a/dep-lib-autocfg-79cb8f5711b5481a"}}],"rustflags":[],"metadata":13102859075309379048} -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/dice-9bbf44ebb20a55cc/test-bin-dice-9bbf44ebb20a55cc.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"[]","target":764035618455586800,"profile":1647870076477133176,"path":1036222786711178230,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/dice-9bbf44ebb20a55cc/dep-test-bin-dice-9bbf44ebb20a55cc"}}],"rustflags":[],"metadata":10032151488815588541} -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand-39a3e59d1559ed96/run-build-script-build_script_build-39a3e59d1559ed96.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"","target":0,"profile":0,"path":0,"deps":[[8764374909478324557,"build_script_build",false,9308447646124948529]],"local":[{"RerunIfChanged":{"output":"debug/build/rand-39a3e59d1559ed96/output","paths":["build.rs"]}}],"rustflags":[],"metadata":0} -------------------------------------------------------------------------------- /jan05/enum1/target/rls/debug/.fingerprint/enum1-1a6eafb5bb735a93/test-bin-enum1-1a6eafb5bb735a93.json: -------------------------------------------------------------------------------- 1 | {"rustc":11662075050264400882,"features":"[]","target":6985183714674466115,"profile":1647870076477133176,"path":1036222786711178230,"deps":[],"local":[{"MtimeBased":[[1578396808,664321394],".fingerprint/enum1-1a6eafb5bb735a93/dep-test-bin-enum1-1a6eafb5bb735a93"]}],"rustflags":[],"metadata":10032151488815588541} -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_pcg-6c105b2d74e471fd/run-build-script-build_script_build-6c105b2d74e471fd.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"","target":0,"profile":0,"path":0,"deps":[[16210685455836663028,"build_script_build",false,10208259201164728360]],"local":[{"RerunIfChanged":{"output":"debug/build/rand_pcg-6c105b2d74e471fd/output","paths":["build.rs"]}}],"rustflags":[],"metadata":0} -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/autocfg-79cb8f5711b5481a/lib-autocfg-79cb8f5711b5481a.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"[]","target":8574161726611873773,"profile":9935990280773120926,"path":15538127486869908267,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/autocfg-79cb8f5711b5481a/dep-lib-autocfg-79cb8f5711b5481a"}}],"rustflags":[],"metadata":13102859075309379048} -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_chacha-6d3af2a48b82d1f1/run-build-script-build_script_build-6d3af2a48b82d1f1.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"","target":0,"profile":0,"path":0,"deps":[[3516950092323246202,"build_script_build",false,15165950819645169294]],"local":[{"RerunIfChanged":{"output":"debug/build/rand_chacha-6d3af2a48b82d1f1/output","paths":["build.rs"]}}],"rustflags":[],"metadata":0} -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_pcg-6c105b2d74e471fd/run-build-script-build_script_build-6c105b2d74e471fd.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"","target":0,"profile":0,"path":0,"deps":[[16210685455836663028,"build_script_build",false,10208259201164728360]],"local":[{"RerunIfChanged":{"output":"debug/build/rand_pcg-6c105b2d74e471fd/output","paths":["build.rs"]}}],"rustflags":[],"metadata":0} -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_chacha-6d3af2a48b82d1f1/run-build-script-build_script_build-6d3af2a48b82d1f1.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"","target":0,"profile":0,"path":0,"deps":[[3516950092323246202,"build_script_build",false,15165950819645169294]],"local":[{"RerunIfChanged":{"output":"debug/build/rand_chacha-6d3af2a48b82d1f1/output","paths":["build.rs"]}}],"rustflags":[],"metadata":0} -------------------------------------------------------------------------------- /dec01_evening/move1/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | let cup1:u8 = 100 ; 3 | println!("cup1 : {} ml",cup1); 4 | let cup2 = cup1; 5 | println!("cup1 : {} ml",cup1); 6 | println!("cup2 : {} ml",cup2); 7 | 8 | let food1 = String::from("Biryani"); 9 | println!("food1 : {} ",food1); 10 | let food2 = food1; 11 | println!("food1 : {} ",food1); 12 | println!("food2 : {} ",food2); 13 | } 14 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_core-94dc1c6006443d6f/lib-rand_core-94dc1c6006443d6f.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"[\"alloc\", \"std\"]","target":14134132449596365798,"profile":9935990280773120926,"path":9502636592238652751,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_core-94dc1c6006443d6f/dep-lib-rand_core-94dc1c6006443d6f"}}],"rustflags":[],"metadata":3036601509445419820} -------------------------------------------------------------------------------- /oct20/datatype/src/main.rs: -------------------------------------------------------------------------------- 1 | const MAX_PRICE:f32 = 5000.0; 2 | fn main() { 3 | let age:u8 = 44; 4 | println!("Value of Age is : {}",age); 5 | let temp = 16.23; 6 | println!("Temperatur is : {}",temp); 7 | 8 | let salary:usize=49_000; 9 | println!("Salary is : {}",salary); 10 | println!("Constant is : {}",MAX_PRICE); 11 | 12 | let rent = 36_000u16; 13 | println!("Rent is : {}",rent); 14 | } 15 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_core-39959f2c6e70e7a9/lib-rand_core-39959f2c6e70e7a9.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"[\"alloc\", \"std\"]","target":14134132449596365798,"profile":14672114853574311971,"path":9502636592238652751,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_core-39959f2c6e70e7a9/dep-lib-rand_core-39959f2c6e70e7a9"}}],"rustflags":[],"metadata":3036601509445419820} -------------------------------------------------------------------------------- /jan26/fileread2/src/main.rs: -------------------------------------------------------------------------------- 1 | use std::io; 2 | use std::fs; 3 | 4 | fn read_username_from_file() -> Result { 5 | fs::read_to_string("hello.txt") 6 | } 7 | 8 | fn main() { 9 | let data = read_username_from_file(); 10 | println!("{:?}",data); 11 | 12 | let username = match data { 13 | Ok(s) => s, 14 | Err(_) => "".to_string(), 15 | }; 16 | println!("{}", username); 17 | } -------------------------------------------------------------------------------- /jan19/module1/src/main.rs: -------------------------------------------------------------------------------- 1 | mod pk { 2 | pub mod sindh { 3 | pub fn education() { 4 | println!("We are in pak:sindh:edu "); 5 | } 6 | } 7 | } 8 | mod print; // in print.rs 9 | use pk::sindh::education; // in main.rs 10 | 11 | use pakistan; // external (on system) 12 | 13 | fn main() { 14 | education(); 15 | print::kpk::peshawar(); 16 | pakistan::islamabad::piaic(); 17 | 18 | } 19 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/dice-d30886d5ca457a36/bin-dice-d30886d5ca457a36.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"[]","target":764035618455586800,"profile":14996655781355331481,"path":1036222786711178230,"deps":[[8764374909478324557,"rand",false,18015521166783993229]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/dice-d30886d5ca457a36/dep-bin-dice-d30886d5ca457a36"}}],"rustflags":[],"metadata":10032151488815588541} -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/dice-a1187a9306336900/lib-dice-a1187a9306336900.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"[]","target":15422287863762920186,"profile":14996655781355331481,"path":10872709659218687626,"deps":[[8764374909478324557,"rand",false,18015521166783993229]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/dice-a1187a9306336900/dep-lib-dice-a1187a9306336900"}}],"rustflags":[],"metadata":10032151488815588541} -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/dice-10398e5bba7076de/bin-dice-10398e5bba7076de.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"[]","target":764035618455586800,"profile":14891217944882224483,"path":1036222786711178230,"deps":[[8764374909478324557,"rand",false,6793033532258287282]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/dice-10398e5bba7076de/dep-bin-dice-10398e5bba7076de"}}],"rustflags":[],"metadata":10032151488815588541} -------------------------------------------------------------------------------- /morning_oct27/userinput/src/main.rs: -------------------------------------------------------------------------------- 1 | use std::io; 2 | 3 | fn main() { 4 | let mut input1 = String::new(); 5 | println!("Enter your data"); 6 | io::stdin().read_line(&mut input1).expect("Failed to read line"); 7 | println!("You enter: {:?}",input1.trim()); 8 | println!("You enter: {:?}",input1); 9 | let int_input: u32 = input1.trim().parse().expect("Please type a number!"); 10 | println!("You enter: {:?}",int_input); 11 | } 12 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/libc-92f63d88abbc9702/build-script-build_script_build-92f63d88abbc9702.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"[\"default\", \"std\"]","target":10088282520713642473,"profile":9935990280773120926,"path":4766063123447020579,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-92f63d88abbc9702/dep-build-script-build_script_build-92f63d88abbc9702"}}],"rustflags":[],"metadata":14998826085014762512} -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_hc-de64eee1d3c2b3e3/lib-rand_hc-de64eee1d3c2b3e3.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"[]","target":3130271073017615247,"profile":9935990280773120926,"path":8784317436325746565,"deps":[[4756937485121490273,"rand_core",false,11330653923845347092]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_hc-de64eee1d3c2b3e3/dep-lib-rand_hc-de64eee1d3c2b3e3"}}],"rustflags":[],"metadata":4354118106049687278} -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/dice-738593c8811e521d/test-bin-dice-738593c8811e521d.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"[]","target":764035618455586800,"profile":1647870076477133176,"path":1036222786711178230,"deps":[[8764374909478324557,"rand",false,6793033532258287282]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/dice-738593c8811e521d/dep-test-bin-dice-738593c8811e521d"}}],"rustflags":[],"metadata":10032151488815588541} -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/libc-92f63d88abbc9702/build-script-build_script_build-92f63d88abbc9702.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"[\"default\", \"std\"]","target":10088282520713642473,"profile":9935990280773120926,"path":4766063123447020579,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-92f63d88abbc9702/dep-build-script-build_script_build-92f63d88abbc9702"}}],"rustflags":[],"metadata":14998826085014762512} -------------------------------------------------------------------------------- /online/18apr/kunna/src/main.rs: -------------------------------------------------------------------------------- 1 | mod lunch; 2 | //use lunch::menu; 3 | //use lunch::menu::dinner; 4 | use lunch::menu::{self,dinner}; 5 | 6 | fn main() { 7 | println!("We need Food"); 8 | lunch::menu::dinner(); 9 | menu::dinner(); 10 | dinner(); // idiomatic path 11 | 12 | } 13 | 14 | // Library 15 | // Github Account 16 | // Git install 17 | // Smart Git/ Git command (terminal) 18 | // firstwelcome clone 19 | // Readme 20 | // Cargo.toml -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_hc-446e0436c83e3e28/lib-rand_hc-446e0436c83e3e28.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"[]","target":3130271073017615247,"profile":14672114853574311971,"path":8784317436325746565,"deps":[[4756937485121490273,"rand_core",false,15610095913861845799]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_hc-446e0436c83e3e28/dep-lib-rand_hc-446e0436c83e3e28"}}],"rustflags":[],"metadata":4354118106049687278} -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_core-5466fae7cf5a8d1d/lib-rand_core-5466fae7cf5a8d1d.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"[]","target":14134132449596365798,"profile":9935990280773120926,"path":11238902919452911373,"deps":[[6501514878612547676,"rand_core",false,15991803014920535816]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_core-5466fae7cf5a8d1d/dep-lib-rand_core-5466fae7cf5a8d1d"}}],"rustflags":[],"metadata":3036601509445419820} -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_isaac-a09e4997930d9a7a/lib-rand_isaac-a09e4997930d9a7a.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"[]","target":9515512449483452870,"profile":9935990280773120926,"path":7021144867272325166,"deps":[[4756937485121490273,"rand_core",false,11330653923845347092]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_isaac-a09e4997930d9a7a/dep-lib-rand_isaac-a09e4997930d9a7a"}}],"rustflags":[],"metadata":4764067672623722005} -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_core-d68922d88bd6e7a8/lib-rand_core-d68922d88bd6e7a8.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"[]","target":14134132449596365798,"profile":14672114853574311971,"path":11238902919452911373,"deps":[[6501514878612547676,"rand_core",false,7910872959761822849]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_core-d68922d88bd6e7a8/dep-lib-rand_core-d68922d88bd6e7a8"}}],"rustflags":[],"metadata":3036601509445419820} -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/libc-81b3ebe91fc7814e/lib-libc-81b3ebe91fc7814e.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"[\"default\", \"std\"]","target":15220052048028810702,"profile":9935990280773120926,"path":4453451372460025453,"deps":[[6647251100247846749,"build_script_build",false,1283735659600767890]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-81b3ebe91fc7814e/dep-lib-libc-81b3ebe91fc7814e"}}],"rustflags":[],"metadata":14998826085014762512} -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_isaac-9b0bdfbe54a8db40/lib-rand_isaac-9b0bdfbe54a8db40.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"[]","target":9515512449483452870,"profile":14672114853574311971,"path":7021144867272325166,"deps":[[4756937485121490273,"rand_core",false,15610095913861845799]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_isaac-9b0bdfbe54a8db40/dep-lib-rand_isaac-9b0bdfbe54a8db40"}}],"rustflags":[],"metadata":4764067672623722005} -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_jitter-ffc729094b857dfd/lib-rand_jitter-ffc729094b857dfd.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"[\"std\"]","target":272559543967526891,"profile":9935990280773120926,"path":10452634534602972863,"deps":[[6501514878612547676,"rand_core",false,15991803014920535816]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_jitter-ffc729094b857dfd/dep-lib-rand_jitter-ffc729094b857dfd"}}],"rustflags":[],"metadata":3917600229818606806} -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_xorshift-7c16fccce9ec60e7/lib-rand_xorshift-7c16fccce9ec60e7.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"[]","target":4941396024255459870,"profile":9935990280773120926,"path":3191323169048519302,"deps":[[4756937485121490273,"rand_core",false,11330653923845347092]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_xorshift-7c16fccce9ec60e7/dep-lib-rand_xorshift-7c16fccce9ec60e7"}}],"rustflags":[],"metadata":12846401992555838856} -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/libc-f99a22dcfef0ef25/lib-libc-f99a22dcfef0ef25.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"[\"default\", \"std\"]","target":15220052048028810702,"profile":14672114853574311971,"path":4453451372460025453,"deps":[[6647251100247846749,"build_script_build",false,1283735659600767890]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-f99a22dcfef0ef25/dep-lib-libc-f99a22dcfef0ef25"}}],"rustflags":[],"metadata":14998826085014762512} -------------------------------------------------------------------------------- /evening_oct20/datatype/src/main.rs: -------------------------------------------------------------------------------- 1 | const TEMP :f32=25.2; 2 | fn main() { 3 | let age:u8=22; 4 | println!("Age is : {}",age); 5 | let salary=30_000u16; 6 | println!("Salary is : {}",salary); 7 | println!("Temperature is : {}",TEMP); 8 | let profit :usize = 44556677; 9 | println!("Profit is : {}",profit); 10 | let name = "PIAIC"; 11 | println!("Name is : {}",name); 12 | let grade='A'; 13 | println!("Grade is : {}",grade); 14 | 15 | } 16 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_jitter-4f6d635543823c79/lib-rand_jitter-4f6d635543823c79.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"[\"std\"]","target":272559543967526891,"profile":14672114853574311971,"path":10452634534602972863,"deps":[[6501514878612547676,"rand_core",false,7910872959761822849]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_jitter-4f6d635543823c79/dep-lib-rand_jitter-4f6d635543823c79"}}],"rustflags":[],"metadata":3917600229818606806} -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_xorshift-376d24667acf24aa/lib-rand_xorshift-376d24667acf24aa.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"[]","target":4941396024255459870,"profile":14672114853574311971,"path":3191323169048519302,"deps":[[4756937485121490273,"rand_core",false,15610095913861845799]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_xorshift-376d24667acf24aa/dep-lib-rand_xorshift-376d24667acf24aa"}}],"rustflags":[],"metadata":12846401992555838856} -------------------------------------------------------------------------------- /online/apr04/len_option/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | let name = String::from("Umair"); 3 | let name_length = name.len(); 4 | println!("{}",name_length); 5 | let age = [20,22,24,26]; 6 | //element 0 1 2 3 4 5 6 7 8 9 7 | let temp = 9; 8 | println!("Age is : {}",age[temp]); 9 | //age.9 //tuple calling 10 | //age[3] //array calling 11 | // age[9] 12 | //println!("Age is : {:#?}",age.get(2)); 13 | 14 | 15 | } 16 | -------------------------------------------------------------------------------- /jan19/struct_enum/src/main.rs: -------------------------------------------------------------------------------- 1 | #[derive(Debug)] 2 | struct Data { 3 | name:String, 4 | fee:u16, 5 | status:bool, 6 | } 7 | #[derive(Debug)] 8 | enum Pakistan { 9 | Punjab, 10 | Sindh, 11 | } 12 | 13 | fn main() { 14 | let student1 = Data { 15 | name:String::from("Rehman "), 16 | status:true, 17 | fee:3000 18 | }; 19 | println!("{:#?}",student1); 20 | let p1 = Pakistan::Punjab; 21 | println!("{:#?}",p1); 22 | 23 | } 24 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/dice-7ed4734a92a5e4ba/bin-dice-7ed4734a92a5e4ba.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"[]","target":764035618455586800,"profile":14996655781355331481,"path":1036222786711178230,"deps":[[3692672844235749189,"dice",false,5179970484502048222],[8764374909478324557,"rand",false,18015521166783993229]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/dice-7ed4734a92a5e4ba/dep-bin-dice-7ed4734a92a5e4ba"}}],"rustflags":[],"metadata":10032151488815588541} -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_pcg-89b9588bdd1cef19/build-script-build_script_build-89b9588bdd1cef19.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"[]","target":10088282520713642473,"profile":9935990280773120926,"path":14190386336198860240,"deps":[[15841576968412726004,"autocfg",false,6117978596923147403]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_pcg-89b9588bdd1cef19/dep-build-script-build_script_build-89b9588bdd1cef19"}}],"rustflags":[],"metadata":7717619030739936105} -------------------------------------------------------------------------------- /morning_nov24/simplefunction/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | 3 | println!("\n First Calling"); 4 | let receive = printer(5); 5 | println!("{}",receive); 6 | let receive = printer(60); 7 | println!("{}",receive); 8 | // printer(); 9 | // println!("\n Third Calling"); 10 | // printer(); 11 | // println!("\n Fourth Calling"); 12 | // printer(); 13 | } 14 | 15 | fn printer(pass:i32) -> i32{ 16 | println!("Editing / Updating"); 17 | pass+50 18 | } 19 | 20 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_chacha-11fcddb36ce71f77/build-script-build_script_build-11fcddb36ce71f77.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"[]","target":10088282520713642473,"profile":9935990280773120926,"path":16911383075162310146,"deps":[[15841576968412726004,"autocfg",false,6117978596923147403]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_chacha-11fcddb36ce71f77/dep-build-script-build_script_build-11fcddb36ce71f77"}}],"rustflags":[],"metadata":1720570381092477384} -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_pcg-89b9588bdd1cef19/build-script-build_script_build-89b9588bdd1cef19.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"[]","target":10088282520713642473,"profile":9935990280773120926,"path":14190386336198860240,"deps":[[15841576968412726004,"autocfg",false,6117978596923147403]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_pcg-89b9588bdd1cef19/dep-build-script-build_script_build-89b9588bdd1cef19"}}],"rustflags":[],"metadata":7717619030739936105} -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_chacha-11fcddb36ce71f77/build-script-build_script_build-11fcddb36ce71f77.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"[]","target":10088282520713642473,"profile":9935990280773120926,"path":16911383075162310146,"deps":[[15841576968412726004,"autocfg",false,6117978596923147403]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_chacha-11fcddb36ce71f77/dep-build-script-build_script_build-11fcddb36ce71f77"}}],"rustflags":[],"metadata":1720570381092477384} -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_os-3d3de5ad4384f6df/lib-rand_os-3d3de5ad4384f6df.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"[]","target":15249791557521824302,"profile":9935990280773120926,"path":3343160631230873095,"deps":[[6501514878612547676,"rand_core",false,15991803014920535816],[6647251100247846749,"libc",false,17120638317886251663]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_os-3d3de5ad4384f6df/dep-lib-rand_os-3d3de5ad4384f6df"}}],"rustflags":[],"metadata":13214969367954589517} -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_os-7cfce459684d55f0/lib-rand_os-7cfce459684d55f0.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"[]","target":15249791557521824302,"profile":14672114853574311971,"path":3343160631230873095,"deps":[[6501514878612547676,"rand_core",false,7910872959761822849],[6647251100247846749,"libc",false,3877348521682988830]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_os-7cfce459684d55f0/dep-lib-rand_os-7cfce459684d55f0"}}],"rustflags":[],"metadata":13214969367954589517} -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand-e20a05f02a4f869b/build-script-build_script_build-e20a05f02a4f869b.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"[\"alloc\", \"default\", \"rand_os\", \"std\"]","target":10088282520713642473,"profile":9935990280773120926,"path":12476210572670513576,"deps":[[15841576968412726004,"autocfg",false,6117978596923147403]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand-e20a05f02a4f869b/dep-build-script-build_script_build-e20a05f02a4f869b"}}],"rustflags":[],"metadata":7119169968661360791} -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_pcg-7cfd0b92d80f3eb1/lib-rand_pcg-7cfd0b92d80f3eb1.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"[]","target":11973260267564276155,"profile":9935990280773120926,"path":10091941432002021365,"deps":[[6501514878612547676,"rand_core",false,15991803014920535816],[16210685455836663028,"build_script_build",false,9840404890731231511]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_pcg-7cfd0b92d80f3eb1/dep-lib-rand_pcg-7cfd0b92d80f3eb1"}}],"rustflags":[],"metadata":7717619030739936105} -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_pcg-e9f2401ee2095dd7/lib-rand_pcg-e9f2401ee2095dd7.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"[]","target":11973260267564276155,"profile":14672114853574311971,"path":10091941432002021365,"deps":[[6501514878612547676,"rand_core",false,7910872959761822849],[16210685455836663028,"build_script_build",false,9840404890731231511]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_pcg-e9f2401ee2095dd7/dep-lib-rand_pcg-e9f2401ee2095dd7"}}],"rustflags":[],"metadata":7717619030739936105} -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/.fingerprint/rand_chacha-c84fea8c15b32821/lib-rand_chacha-c84fea8c15b32821.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"[]","target":2566696992061739666,"profile":9935990280773120926,"path":6560046346588079392,"deps":[[3516950092323246202,"build_script_build",false,3503672360061014070],[4756937485121490273,"rand_core",false,11330653923845347092]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_chacha-c84fea8c15b32821/dep-lib-rand_chacha-c84fea8c15b32821"}}],"rustflags":[],"metadata":1720570381092477384} -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand-e20a05f02a4f869b/build-script-build_script_build-e20a05f02a4f869b.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"[\"alloc\", \"default\", \"rand_os\", \"std\"]","target":10088282520713642473,"profile":9935990280773120926,"path":12476210572670513576,"deps":[[15841576968412726004,"autocfg",false,6117978596923147403]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand-e20a05f02a4f869b/dep-build-script-build_script_build-e20a05f02a4f869b"}}],"rustflags":[],"metadata":7119169968661360791} -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/.fingerprint/rand_chacha-7951eb6623c18c6e/lib-rand_chacha-7951eb6623c18c6e.json: -------------------------------------------------------------------------------- 1 | {"rustc":1240946752080948661,"features":"[]","target":2566696992061739666,"profile":14672114853574311971,"path":6560046346588079392,"deps":[[3516950092323246202,"build_script_build",false,3503672360061014070],[4756937485121490273,"rand_core",false,15610095913861845799]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_chacha-7951eb6623c18c6e/dep-lib-rand_chacha-7951eb6623c18c6e"}}],"rustflags":[],"metadata":1720570381092477384} -------------------------------------------------------------------------------- /dec08_morning/point/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | let team1=String::from("Islamabad United"); 3 | println!("Team1 is {}",team1); 4 | println!("Pointer is {:p}",&team1); 5 | //let team2=team1; 6 | //println!("Team1 is {}",team1); 7 | let team3=&team1; 8 | println!("Team1 is {}",team1); 9 | println!("Team3 is {}",team3); 10 | 11 | let len = t20(&team1); 12 | println!("Team1 length is {}",len); 13 | 14 | } 15 | 16 | fn t20(team5:&String)-> usize { 17 | let length = team5.len(); 18 | length 19 | } 20 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/deps/rand_core-d68922d88bd6e7a8.d: -------------------------------------------------------------------------------- 1 | /home/imran82ali/batch3/online/11apr/dice/target/rls/debug/deps/rand_core-d68922d88bd6e7a8.rmeta: /home/imran82ali/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.3.1/src/lib.rs 2 | 3 | /home/imran82ali/batch3/online/11apr/dice/target/rls/debug/deps/rand_core-d68922d88bd6e7a8.d: /home/imran82ali/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.3.1/src/lib.rs 4 | 5 | /home/imran82ali/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.3.1/src/lib.rs: 6 | -------------------------------------------------------------------------------- /evening_oct27/userintput/src/main.rs: -------------------------------------------------------------------------------- 1 | use std::io; 2 | //std/io/ 3 | 4 | fn main() { 5 | println!("Enter any data"); 6 | let mut inputdata = String::new(); 7 | io::stdin().read_line(&mut inputdata).expect("Failed to read line"); 8 | println!("You entered : {}",inputdata); 9 | println!("Pretty You entered : {:?}",inputdata); 10 | println!("Trim You entered : {:?}",inputdata.trim()); 11 | let int_data: u32 = inputdata.trim().parse().expect("Please type a number!"); 12 | println!("Converted Integer : {:?}",int_data); 13 | } 14 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/deps/rand_xorshift-376d24667acf24aa.d: -------------------------------------------------------------------------------- 1 | /home/imran82ali/batch3/online/11apr/dice/target/rls/debug/deps/rand_xorshift-376d24667acf24aa.rmeta: /home/imran82ali/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_xorshift-0.1.1/src/lib.rs 2 | 3 | /home/imran82ali/batch3/online/11apr/dice/target/rls/debug/deps/rand_xorshift-376d24667acf24aa.d: /home/imran82ali/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_xorshift-0.1.1/src/lib.rs 4 | 5 | /home/imran82ali/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_xorshift-0.1.1/src/lib.rs: 6 | -------------------------------------------------------------------------------- /dec15_morning/heap/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | let age = 55; //i32 primitive data type STACK 3 | println!("age {}",age); 4 | let age2 = age; 5 | println!("age {}",age); 6 | println!("age2 {}",age2); 7 | let player1= "Shahid Afridi"; //String Literal stack 8 | let player2=String::from("Faraz Ahmed"); //String Type heap 9 | println!("{}",player2); 10 | let player3 = player2; 11 | println!("{}",player3); 12 | abcd(player3); 13 | 14 | 15 | } 16 | 17 | fn abcd (p:String){ 18 | println!("we are in abcd {}",p); 19 | }//drop player3 -------------------------------------------------------------------------------- /jan26/fileread/src/main.rs: -------------------------------------------------------------------------------- 1 | use std::io; 2 | use std::io::Read; 3 | use std::fs::File; 4 | 5 | fn read_username_from_file() -> Result { 6 | let f = File::open("hello.txt"); 7 | 8 | let mut f = match f { 9 | Ok(file) => file, 10 | Err(e) => return Err(e), 11 | }; 12 | 13 | let mut s = String::new(); 14 | 15 | match f.read_to_string(&mut s) { 16 | Ok(_) => Ok(s), 17 | Err(e) => Err(e), 18 | } 19 | } 20 | 21 | fn main () { 22 | let data = read_username_from_file(); 23 | println!("{:#?}",data); 24 | } -------------------------------------------------------------------------------- /dec15_evening/reference/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | let name = String::from("Batch3"); 3 | let name1 =&name; 4 | println!("{}",name); 5 | println!("{}",name1); 6 | one(&name); 7 | let mut course = String::from("IoT "); 8 | let course1 =& mut course; 9 | println!("{}",course1); 10 | course1.push_str(" Evening"); 11 | println!("{}",course1); 12 | println!("{}",course); 13 | let mut age:u8 = 55; 14 | let age2=&mut age; 15 | println!("{}",age2); 16 | } 17 | 18 | fn one(s:&String){ 19 | println!("we are in one {}",s); 20 | } 21 | -------------------------------------------------------------------------------- /evening_oct20/compound/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | let data = ("PIAIC", 3000, 67.8); 3 | let (org, fee, percent) = data; 4 | println!("The fee is: {}", fee); 5 | let org1 = data.0; 6 | println!("The Organization is: {}", org1); 7 | println!("Complete Tuple {:?}",data); 8 | 9 | let mut fruit = ["Mango","Orange","Banana","Papaya","Cheeko"]; 10 | println!("Fruit array {:#?}",fruit); 11 | fruit[0] = "Sindhri Mango"; 12 | println!("Fruit array {}",fruit[0]); 13 | let temp:usize = 2; 14 | println!("Fruit.2 array {}",fruit[temp]); 15 | 16 | } -------------------------------------------------------------------------------- /jan26/hash2/src/main.rs: -------------------------------------------------------------------------------- 1 | use std::collections::HashMap; 2 | fn main (){ 3 | let text = "hello world wonderful world"; 4 | 5 | let mut map = HashMap::new(); 6 | 7 | for word in text.split_whitespace() { 8 | let count = map.entry(word).or_insert(0); 9 | *count += 1; 10 | } 11 | 12 | println!("{:#?}", map); 13 | 14 | 15 | let text = "samajh samajh kar samajh ko samjho"; 16 | 17 | let mut map = HashMap::new(); 18 | 19 | for word in text.split_whitespace() { 20 | let count = map.entry(word).or_insert(0); 21 | *count += 1; 22 | } 23 | 24 | println!("{:#?}", map); 25 | 26 | 27 | } -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/build/rand-e20a05f02a4f869b/build_script_build-e20a05f02a4f869b.d: -------------------------------------------------------------------------------- 1 | /home/imran82ali/batch3/online/11apr/dice/target/debug/build/rand-e20a05f02a4f869b/build_script_build-e20a05f02a4f869b: /home/imran82ali/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.6.5/build.rs 2 | 3 | /home/imran82ali/batch3/online/11apr/dice/target/debug/build/rand-e20a05f02a4f869b/build_script_build-e20a05f02a4f869b.d: /home/imran82ali/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.6.5/build.rs 4 | 5 | /home/imran82ali/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.6.5/build.rs: 6 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/build/libc-92f63d88abbc9702/build_script_build-92f63d88abbc9702.d: -------------------------------------------------------------------------------- 1 | /home/imran82ali/batch3/online/11apr/dice/target/debug/build/libc-92f63d88abbc9702/build_script_build-92f63d88abbc9702: /home/imran82ali/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.68/build.rs 2 | 3 | /home/imran82ali/batch3/online/11apr/dice/target/debug/build/libc-92f63d88abbc9702/build_script_build-92f63d88abbc9702.d: /home/imran82ali/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.68/build.rs 4 | 5 | /home/imran82ali/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.68/build.rs: 6 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/build/rand-e20a05f02a4f869b/build_script_build-e20a05f02a4f869b.d: -------------------------------------------------------------------------------- 1 | /home/imran82ali/batch3/online/11apr/dice/target/rls/debug/build/rand-e20a05f02a4f869b/build_script_build-e20a05f02a4f869b: /home/imran82ali/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.6.5/build.rs 2 | 3 | /home/imran82ali/batch3/online/11apr/dice/target/rls/debug/build/rand-e20a05f02a4f869b/build_script_build-e20a05f02a4f869b.d: /home/imran82ali/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.6.5/build.rs 4 | 5 | /home/imran82ali/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.6.5/build.rs: 6 | -------------------------------------------------------------------------------- /jan26/file/src/main.rs: -------------------------------------------------------------------------------- 1 | use std::fs::File; 2 | use std::io::ErrorKind; 3 | 4 | fn main() { 5 | let f = File::open("hello.txt"); 6 | println!("{:#?}",f); 7 | 8 | let f = match f { 9 | Ok(file) => file, 10 | Err(xyz) => match xyz.kind() { 11 | ErrorKind::NotFound => match File::create("hello.txt") { 12 | Ok(fc) => fc, 13 | Err(e) => panic!("Problem creating the file: {:?}", e), 14 | }, 15 | other_error => panic!("Problem opening the file: {:?}", other_error), 16 | }, 17 | }; 18 | println!("{:#?}",f); 19 | } -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/build/libc-92f63d88abbc9702/build_script_build-92f63d88abbc9702.d: -------------------------------------------------------------------------------- 1 | /home/imran82ali/batch3/online/11apr/dice/target/rls/debug/build/libc-92f63d88abbc9702/build_script_build-92f63d88abbc9702: /home/imran82ali/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.68/build.rs 2 | 3 | /home/imran82ali/batch3/online/11apr/dice/target/rls/debug/build/libc-92f63d88abbc9702/build_script_build-92f63d88abbc9702.d: /home/imran82ali/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.68/build.rs 4 | 5 | /home/imran82ali/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.68/build.rs: 6 | -------------------------------------------------------------------------------- /dec01_evening/stringtype/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | { 3 | let age = 55; 4 | } 5 | println!("age {}",age); 6 | 7 | { //scope of string 8 | let name1 = String::from("PIAIC"); 9 | println!("name1 {}",name1); 10 | let name2 = String::new(); 11 | let name3 = "IOT".to_string(); 12 | let temp = " Batch 3"; 13 | let mut name4 = temp.to_string(); 14 | println!("name 4 {}",name4); 15 | name4.push_str(" Islamabad"); 16 | println!("after push_str name 4 {}",name4); 17 | } //END scope of string 18 | //println!("after push_str name 4 {}",name4); 19 | 20 | } 21 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/build/rand_pcg-89b9588bdd1cef19/build_script_build-89b9588bdd1cef19.d: -------------------------------------------------------------------------------- 1 | /home/imran82ali/batch3/online/11apr/dice/target/debug/build/rand_pcg-89b9588bdd1cef19/build_script_build-89b9588bdd1cef19: /home/imran82ali/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_pcg-0.1.2/build.rs 2 | 3 | /home/imran82ali/batch3/online/11apr/dice/target/debug/build/rand_pcg-89b9588bdd1cef19/build_script_build-89b9588bdd1cef19.d: /home/imran82ali/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_pcg-0.1.2/build.rs 4 | 5 | /home/imran82ali/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_pcg-0.1.2/build.rs: 6 | -------------------------------------------------------------------------------- /morning_oct27/scope/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { //main scope 2 | let score = 10; 3 | println!("main score : {}",score); 4 | { //child1 start 5 | println!("main in child score : {}",score); 6 | let child1 = "Child 1"; 7 | println!("child 1 data : {}",child1); 8 | } //child1 end 9 | 10 | { //child2 start 11 | println!("main in child score : {}",score); 12 | let child2 = "Child 2"; 13 | println!("child 2 data : {}",child2); 14 | } //child2 end 15 | 16 | println!("End of program"); 17 | println!("child 1 data : {}",child1); 18 | 19 | } //main scope 20 | -------------------------------------------------------------------------------- /online/11apr/dice/target/rls/debug/build/rand_pcg-89b9588bdd1cef19/build_script_build-89b9588bdd1cef19.d: -------------------------------------------------------------------------------- 1 | /home/imran82ali/batch3/online/11apr/dice/target/rls/debug/build/rand_pcg-89b9588bdd1cef19/build_script_build-89b9588bdd1cef19: /home/imran82ali/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_pcg-0.1.2/build.rs 2 | 3 | /home/imran82ali/batch3/online/11apr/dice/target/rls/debug/build/rand_pcg-89b9588bdd1cef19/build_script_build-89b9588bdd1cef19.d: /home/imran82ali/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_pcg-0.1.2/build.rs 4 | 5 | /home/imran82ali/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_pcg-0.1.2/build.rs: 6 | -------------------------------------------------------------------------------- /online/11apr/dice/target/debug/build/rand_chacha-11fcddb36ce71f77/build_script_build-11fcddb36ce71f77.d: -------------------------------------------------------------------------------- 1 | /home/imran82ali/batch3/online/11apr/dice/target/debug/build/rand_chacha-11fcddb36ce71f77/build_script_build-11fcddb36ce71f77: /home/imran82ali/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.1.1/build.rs 2 | 3 | /home/imran82ali/batch3/online/11apr/dice/target/debug/build/rand_chacha-11fcddb36ce71f77/build_script_build-11fcddb36ce71f77.d: /home/imran82ali/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.1.1/build.rs 4 | 5 | /home/imran82ali/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.1.1/build.rs: 6 | -------------------------------------------------------------------------------- /dec01_evening/func_return/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("Start of main"); 3 | let num2 = 4; 4 | println!("{:?}",sum(5,num2)); 5 | //let abc =sum(5,num2); 6 | //abc.0 7 | //abc.1 8 | //sum(); 9 | println!("direct {}",sum2()); 10 | let rec=sum2(); 11 | println!("return by variable{}",rec); 12 | println!("End of main"); 13 | } 14 | 15 | fn sum (val1:u32,val2:u32) -> (u32,u32) { 16 | println!("we are in sum function"); 17 | println!("{}",val1+val2); 18 | (val1,val1+val2) 19 | } 20 | 21 | fn sum2()->u8{ 22 | println!("we are in sum2 function"); 23 | let age =4; 24 | age 25 | } --------------------------------------------------------------------------------