1 unstable release

Uses old Rust 2015

0.1.0 Feb 11, 2018

#148 in #sound

23 downloads per month

GPL-3.0 license

2.5MB
56K SLoC

C 49K SLoC // 0.1% comments Pan 4.5K SLoC // 0.0% comments M4 851 SLoC // 0.4% comments Python 792 SLoC // 0.2% comments C++ 548 SLoC // 0.1% comments Automake 343 SLoC // 0.2% comments Shell 282 SLoC // 0.2% comments Objective-C 167 SLoC C# 122 SLoC // 0.4% comments Rust 38 SLoC

Contains (obscure autoconf code, 26KB) libsndfile/configure.ac

Easy Syntax

Easy syntax it's a library for rust to use some input and sound things more easily!

Function input() create empty string and you can use your kerboard input

extern crate easy_syntax;
use easy_syntax::input::input;
fn main() {
   let name = input();
   println!("{}", name);
}

Function raw_input() create empty string and then format it to u32

extern crate easy_syntax;
use easy_syntax::input::raw_input;
fn main() {
   let num1 = raw_input();
   let num2: u32 = 10;
   let out = num1 * num2;
   println!("{} * {} = {}", num1, num2, out);
}

Function music_play() plays music, see examples, function play() do same thing as music_play.

Dependencies