Goto Meaning in English
word
ˈɡoʊˌtu/, /ˈɡoʊtoʊ
GOH-too
ˈɡəʊtuː
GOH-too
Definition
In programming, 'goto' is a command that makes the program jump to another part of the code, skipping the normal order.
Usage & Nuances
'goto' is considered outdated and risky in modern programming because it can make code confusing and hard to follow ('spaghetti code'). Used mainly for educational purposes or in older languages.
Spanish: goto (instrucción de programación)Portuguese (BR): goto (instrução de programação)Portuguese (PT): goto (instrução de programação)Chinese (Simplified): goto(编程指令)Chinese (Traditional): goto(程式語言指令)Hindi: goto (प्रोग्रामिंग निर्देश)Arabic: goto (تعليمة برمجة)Bengali: gotoRussian: gotoJapanese: gotoVietnamese: gotoKorean: gotoTurkish: gotoUrdu: gotoIndonesian: goto
Example Sentences
The old BASIC language uses goto to move to a different line.
basic
You should avoid using goto in your code.
basic
Some early programming books taught beginners to use goto.
basic
When I see goto in code, I know it’s probably old school.
natural
Using goto can make debugging a real nightmare.
natural
There are better ways than goto to control a program’s flow these days.
natural