feat: basic definitions

This commit is contained in:
tamasfe
2022-07-25 19:01:06 +02:00
parent 602efc7042
commit b7b9ff29e4
9 changed files with 6109 additions and 11 deletions

View File

@@ -0,0 +1,3 @@
module static;
let hello_there;

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,5 @@
module general_kenobi;
/// Returns a string where `hello there `
/// is repeated `n` times.
fn hello_there(n: i64) -> String;