코딩Coding/한글Rust강의★내가★공부하려고만듬
-
zig language tutorial❤️코딩Coding/한글Rust강의★내가★공부하려고만듬 2022. 6. 27. 23:10
part1 한글지그Zig강의_001_hello world_std_assignment_Zig Programming Language tutorial #ziglang #zig https://youtu.be/JdbEJaWXVMA https://github.com/ratfactor/ziglings GitHub - ratfactor/ziglings: Learn the Zig programming language by fixing tiny broken programs. Learn the Zig programming language by fixing tiny broken programs. - GitHub - ratfactor/ziglings: Learn the Zig programming language by fixi..
-
Rust Default❤️Initialize Variables in a Rust Struct코딩Coding/한글Rust강의★내가★공부하려고만듬 2022. 6. 27. 10:54
https://www.delftstack.com/howto/rust/initialize-variable-in-rust-struct/ Initialize Variables in a Rust Struct This tutorial demonstrates the short way to initialize variables in a Rust struct. www.delftstack.com
-
Rust glium❤️창 띄워서 Rust gui동영상 만들 예정_tutorial Book 있음코딩Coding/한글Rust강의★내가★공부하려고만듬 2022. 6. 26. 23:57
https://github.com/glium/glium/tree/master/book GitHub - glium/glium: Safe OpenGL wrapper for the Rust language. Safe OpenGL wrapper for the Rust language. Contribute to glium/glium development by creating an account on GitHub. github.com #[macro_use] extern crate glium; fn main() { use glium::{glutin, Surface}; let mut event_loop = glutin::event_loop::EventLoop::new(); let wb = glutin::window::..
-
Rust-windowing❤️macOS깔끔한 창 괜찮음코딩Coding/한글Rust강의★내가★공부하려고만듬 2022. 6. 26. 23:43
https://rust.libhunt.com/glutin-alternatives glutin Alternatives - Rust PistonDevelopers/glfw-rs — | LibHunt A low-level library for OpenGL context creation, written in pure Rust. Tags: Opengl, Windowing. rust.libhunt.com https://github.com/rust-windowing/glutin GitHub - rust-windowing/glutin: A low-level library for OpenGL context creation, written in pure Rust. A low-level library for OpenGL c..
-
Rust❤️How to use Rayon for parallel calculation of PI코딩Coding/한글Rust강의★내가★공부하려고만듬 2022. 6. 26. 03:33
How to use Rayon for parallel calculation of PI Ask Question https://stackoverflow.com/questions/59232496/how-to-use-rayon-for-parallel-calculation-of-pi How to use Rayon for parallel calculation of PI My code can calculate Pi using Ramanujan's formula without Rayon and I want to implement Rayon for parallel threading as this is my project. I know that I need to use this use rayon::prelude::*; f..
-
c# ❤️ pi계산 1억자리까지 vs❤️ rust와 비교코딩Coding/한글Rust강의★내가★공부하려고만듬 2022. 6. 24. 10:11
c# c# time elapsed https://youtu.be/j6OE6BJiCf0 https://stackoverflow.com/questions/39395/how-do-i-calculate-pi-in-c How do I calculate PI in C#? How can I calculate the value of PI using C#? I was thinking it would be through a recursive function, if so, what would it look like and are there any math equations to back it up? I'm not too f... stackoverflow.com c# pi계산 https://youtu.be/uwI6PHVmfw..
-
C# vs C++ vs Rust 피보나치 계산으로 성능 테스트코딩Coding/한글Rust강의★내가★공부하려고만듬 2022. 6. 24. 09:44
한글러스트Rust강의_028_Rust&C#&C&C++fibonacci_Parallel효율성 #rustlang https://youtu.be/wY0VIn6_DtY Rust연습_Fibonacci피보나치 출력 - https://economiceco.tistory.com/m/8694 Rust연습_Fibonacci피보나치 출력 fn main() { let mut i = 0; let mut a = 0; let mut c = 0; let mut b = 1; while i 1 { c = b; //1//1/2//3 b = b + a; //1+0=1/1+1=2////3 a = c; //1//1//2 println!(" {}", b); i = i + 1; } e.. economiceco.tistor..
-
Rust❤️Sin 그릴 단서코딩Coding/한글Rust강의★내가★공부하려고만듬 2022. 6. 23. 16:44
한글러스트Rust강의_027_Rust vs R 기초part1_sin cos 그래프 그리기 #sin #cos #rustlang #maths https://youtu.be/GMD-6NU7zUA use plotters::prelude::*; fn main() { let root_area = BitMapBackend::new("images/2.5.png", (600, 400)) .into_drawing_area(); root_area.fill(&WHITE).unwrap(); let mut ctx = ChartBuilder::on(&root_area) .set_label_area_size(LabelAreaPosition::Left, 40) .set_label_area_size(LabelAreaPosition::B..