General purpose programming language and shell
Go to file
2024-07-01 18:52:54 -04:00
dust-lang Fix test 2024-07-01 18:52:54 -04:00
dust-shell Continue standard library implementation 2024-07-01 16:59:39 -04:00
examples Add list type check; Clean up 2024-06-28 15:35:18 -04:00
std Use rust-style type parameter syntax 2024-06-24 13:54:37 -04:00
.gitignore Do not ignore generated tree sitter files 2023-11-28 13:53:33 -05:00
Cargo.lock Add use statements with pre-compile std library 2024-07-01 14:23:01 -04:00
Cargo.toml Clean up 2024-03-22 17:22:39 -04:00
README.md Clean up example 2024-05-18 11:59:39 -04:00

Dust

High-level programming language with effortless concurrency, automatic memory management, type safety and advanced error handling.

io.write_line("Guess the number.")

secret_number = random.range(0..100)

loop {
  	io.write_line("Input your guess.")

  	input = io.read_line()
  	guess = int.parse(input)

  	if guess < secret_number {
  	  	io.write_line("Too low!")
	  } else if guess > secret_number {
	    	io.write_line("Too high!")
	  } else {
	    	io.write_line("You win!")
	    	break
	  }
}