Add Carbon

Fixes #1405

Co-Authored-By: Animesh Dhakal <72594139+animeshdhakal@users.noreply.github.com>
This commit is contained in:
Richie Bendall
2022-11-19 11:39:48 +13:00
parent f92f2fde6c
commit 179123ff58
2 changed files with 8 additions and 1 deletions

6
c/Carbon.carbon Normal file
View File

@@ -0,0 +1,6 @@
package HelloWorld api;
fn Main() -> i32 {
Print("Hello World");
return 0;
}