From fe6f2aceafa9ff5aad1f1f970fa02e416f00cf1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BD=D0=B0=D1=82=D0=BE=D0=BB=D0=B8=D0=B9=20=D0=A2?= =?UTF-8?q?=D1=83=D1=85=D1=82=D0=B0=D1=80=D0=BE=D0=B2?= Date: Sat, 4 Apr 2026 18:38:18 +0500 Subject: [PATCH] =?UTF-8?q?v0.0.0=20=D0=BD=D0=B0=D1=87=D0=B0=D0=BB=D1=8C?= =?UTF-8?q?=D0=BD=D0=B0=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fast/Rect.gox | 9 --------- fast/fast.go | 4 ++++ go.mod | 3 +++ 3 files changed, 7 insertions(+), 9 deletions(-) delete mode 100644 fast/Rect.gox create mode 100644 fast/fast.go create mode 100644 go.mod diff --git a/fast/Rect.gox b/fast/Rect.gox deleted file mode 100644 index 36a2cbd..0000000 --- a/fast/Rect.gox +++ /dev/null @@ -1,9 +0,0 @@ -package fast - -var ( - w, h = 10, 20 - color int - border float64 = 1.2 -) - -echo *this diff --git a/fast/fast.go b/fast/fast.go new file mode 100644 index 0000000..1bad67b --- /dev/null +++ b/fast/fast.go @@ -0,0 +1,4 @@ +// fast/fast.go +package fast + +func Hello() string { return "fast" } diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..bde7a0d --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module git.tad17.ru/itman/fast + +go 1.24.5