====== DEL ====== /* Remove the comments after creating content for each section.*/ Removes lines from a program stored in memory /* For the lines below, just create links, separated by commas, to other pages of the BASICs section, like [[:basics:basicTagName]]. "Implemented by" should mention BASICs which implement the keyword like described, in a more usual and standard way. "With variations" should point to BASICs where this keyword is used a bit differently. "Also written as" should list alternative spellings and abbreviations this keyword has. No need to refer to a BASIC, there is a section for that later. */ **Implemented by:** [[:basics:a2int:]], [[:basics:Atari:ataplus]], [[:basics:msatari:]], [[:basics:trscolor:colorext]] **With variations:** [[:basics:Atari:atxl]] (statement) **Also written as: ** ===== Usage ===== /* For inline examples of syntax, write the keyword between '' and '' (two single quotes) */ Easily understood as a contraction, DEL has been often implemented for a different purpose than that of [[DELETE]]. In [[:basics:trscolor:colorext|Tandy CoCo II BASIC]], at least, DEL is an edition command for erasing program lines. ==== Variations ==== In [[:basics:Atari:atxl|Atari BASIC XL]], DEL is a //statement//, used within a program for erasing its own lines! It can remove a single line or a range, if given a second parameter separated by a comma: 250 DEL 1000,2000 In the example above, the deleted range //includes// line 2000. ===== Examples ===== /* Below is an example of a code block, using GeSHi syntax highlighting for //gwbasic//. Other styles of interest might be //basic4gl//, //blitzbasic//, //freebasic//, //gambas//, //locobasic//, //purebasic//, //qbasic//, //sdlbasic//, //thinbasic//, //vb//, //vbnet//, //xbasic// or //zxbasic//. 10 PRINT "HELLO" */ ===== Comments ===== /* Origin of the keyword, opinions, history... */ ===== Related keywords ===== /* Keywords that are often or always used along this one */ ===== Similar keywords ===== /* Keywords with the same or similar functionality found in other versions of BASIC */ ===== In other languages... ===== /* For parallels and comparisons with other modern-day languages */ ===== References ===== /* If you used the ((citation)) syntax elsewhere in the text, they will appear under this section. But you can write some recommendations of books, magazines, etc */ * https://www.cocopedia.com/wiki/index.php/BASIC:BASIC , last check 2024-04-02 * //A Reference Manual for BASIC XL//. Optimized Systems Software. San Jose, USA, 1980. /* ===== TAGS ===== Please use the syntax below for adding tags to this page, separated by spaces (use quotes for tags with spaces). The most important tags to be used are, separated by groups: - Statements | Commands | SpecialVariables | Operators {{tag>tagName}} */ {{tag>Commands Statements}}