Good video but there is a small correction at 2:30 The Lexer just convert a sequence of characters into a sequence of tokens which follows a specific regular expression, Lexer doesn't check if the source code follows the grammar of the language, it is done by the Parser. In go compiler the lexer automatically inserts a semicolon token into the token stream which is then passed to the parser which checks if the token stream follows the grammar of the language.
@rahulanand60153 жыл бұрын
Happy teacher's day Hitesh... You helped me out with your react course now I got a job... Thanks a ton
@gnumanoj2 жыл бұрын
Dear Hitesh, this tutorial is better than paid courses on other platforms ! cant thank you enough for this one !
@HiteshCodeLab2 жыл бұрын
Glad you liked it
@n1ghtmar3_orin Жыл бұрын
Wanted to learn golang through a crash course in 20-30 minute to modify some bug bounty tools and add some features but now here I am learning the basics of everything. Your videoes really hooked me up. Kudos to you mate 🔥
@codebidhya9 ай бұрын
I think you swapped the "Parser" and "Lexer" definition in your description. Nice video btw ❤
@aushafy3 жыл бұрын
Hi Hitesh, I'm from Indonesia and I learn so much from your every single video. Keep it up with another use case in Golang
@manasmangalpattanaik35392 жыл бұрын
Absolutely clear & informative. Good Job. Super.
@himeshgupta6478Ай бұрын
Bro can you please tell where can we find the code for all the go lang tutorials
@adarshshete79873 жыл бұрын
Happy Teacher's Day Hitesh Sir ❤️
@vedambala2 жыл бұрын
Nice explanations Hitesh
@XxMissingDataxX2 жыл бұрын
How do you get your folders to show like that in VS ?
@haochu80052 жыл бұрын
Sorry, but why don't you get the "gopls requires a module at the root of your workspace" error?
@muntadher8087 Жыл бұрын
Loved it
@AmitMaity3 жыл бұрын
Happy Teachers Day ❤️ Sir
@MrSarosham3 жыл бұрын
Hi .do u have any vedio on web scraping.
@iamraj23983 жыл бұрын
Hello Sir, Happy Teacher's Day u said that in C++, Java, JS also have lexer but then why do we need to put semicolon in these languages. ;
@ACHTech202 жыл бұрын
Because for these languages like C++, it's not optional to have semicolon, C++ LEXER WON'T BE DOING THAT WORK OF PUTTING SEMICOLON IN YOUR CODE (IF NOT THERE)