basic of 1-1

This commit is contained in:
DutchEllie 2021-12-18 11:09:16 +01:00
parent ce5e74d972
commit 4e31b2b57c
5 changed files with 2007 additions and 12 deletions

View File

@ -1,6 +0,0 @@
CC := gcc
BIN := app
all: main.c
$(CC) $^ -o $(BIN)

BIN
1-1/app

Binary file not shown.

2000
1-1/input Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +0,0 @@
#include <stdio.h>
int main() {
printf("Hello world!\n");
return 0;
}

7
1-1/main.go Normal file
View File

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("Hello World")
}