Skip to content

Commit

Permalink
Add legacy folder
Browse files Browse the repository at this point in the history
  • Loading branch information
didrikmunther committed Sep 26, 2024
1 parent 8eaab5b commit fc9b3db
Show file tree
Hide file tree
Showing 58 changed files with 24 additions and 260 deletions.
258 changes: 0 additions & 258 deletions debug.txt

This file was deleted.

26 changes: 24 additions & 2 deletions input.ro
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
fn my_func(in: int) {}
__builtin fn printf(format: str, ...args: any);

my_func("abc");
fn add_two_things<T>(format: str, a: T, b: T) {
let c: T = a + b;

printf(format, a, b, c);
}


let a: int = 1;
let c: int = 5;

let strvar = "abc";

add_two_things(
"%i + %i = %i\n",
a,
c
);

add_two_things(
"%s + %s = %s\n",
strvar,
"def"
);
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit fc9b3db

Please sign in to comment.