From 8a6d0f91131ce0edaccb27774230be7bdf75fc05 Mon Sep 17 00:00:00 2001 From: Zakaria Date: Mon, 7 Sep 2026 21:01:20 -0400 Subject: [PATCH] commit from Arch --- courses/1 | 19 ------------------- courses/main.go | 2 +- 2 files changed, 1 insertion(+), 20 deletions(-) delete mode 100644 courses/1 diff --git a/courses/1 b/courses/1 deleted file mode 100644 index 50c6344..0000000 --- a/courses/1 +++ /dev/null @@ -1,19 +0,0 @@ -package main - -import ( - "fmt" -) - -const name = "Sara" - -love := "Kahlousha" -number := 43900900 - -func main() { - - const world = "Mykids" - fmt.Println("Hello,", world) - - fmt.Println("I love ", name) - -} diff --git a/courses/main.go b/courses/main.go index b3719a9..f2a82cd 100644 --- a/courses/main.go +++ b/courses/main.go @@ -9,7 +9,7 @@ const ( // In other words, the binary number that is 1 followed by 100 zeroes. Big = 1 << 100 - //shoft it right 99 places + // shoft it right 99 places Small = Big >> 99 )