First you need to clarify what you wanna code and in which coding language. There are several like C, C#, C++, Java, Python etc. And they are all fundamentally different.
Take an example "Hello World" a beginner code to teach beginners the first steps.
Hello World in Java looks like:
*public class HelloWorld
{
public static void main (String[] args)
{
// Ausgabe Hello World!
System.out.println("Hello World!");
}
}*
In Python:
print("Hello World")
In C:
int main() {
printf("Hello World\n");
return 0;
}
In C#:
namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello, world!");
Console.ReadLine();
}
}
}
In C++:
#include <iostream>
int main() {
std::cout << "Hello World!";
return 0;
}
As you can see they are all different but all achieve the same output which is "Hello World".*
You should follow up on which language and which task you should code. also go through the language documentation which may be boring but very useful to understand the commands and structure.
Good luck