So, I've recently gotten into Whitespace programming, and one of the characters is listed as [LF]. Not knowing what this was(yes, yes, yell at me all you want for being an idiot), I looked it up and found on Wikipedia that it could be typed using CTRL+M(aka ^M). So, I used it for a while, but when I went back and took a look at the article, it said that LF is also known as CRLF, which is "Carriage Return Line Feed", if I remember correctly. Does this mean that Enter, which is technically the "carriage return" works just as well for the newlines? Sorry if this is a stupid question :T
Is CTRL+M the same as Enter?
2.1k views Asked by TrojanByAccident At
1
There are 1 answers
Related Questions in KEYBOARD
- On iOS, the keyboard does not offer a 6-character SMS code
- Using javaFx, how to distinguish between return-key and enter-key on the numpad?
- Way to adding emoji to textarea with keyboard, other than copy/paste
- Win32api send message and Pydirectinput and Powertoy (Keyboard Manager ) Not working when open the application
- Keyboard not appearing when connecting smart card reader to iPhones with type-c port. i.e. iPhone 15/ 15 pro
- Xamarin android emulate usb PC Keyboard
- Pygame response to superfast human key presses?
- Why am I getting keyboard letter repeats with Chrome and not Firefox?
- python keyboard libary problem with writhing too many characters
- Wordpress keyboard navigation
- is on keyboard one side alt is more prominent than other side while using them in shortcut keys
- Preserving TextField Input After Keyboard Dismissal in Flutter
- combine KeyCode pressed and modifiers to get final KeyCode
- Shadcn Drawer component with Inputs on mobile, keyboard hides inputs or shows a blank space hiding them
- Create an onscreen swipe keyboard for Mac
Related Questions in WHITESPACE
- Wrote an Invisible whitespace in VScode, but showed in command line
- First whitespace doesn't trigger the onEditorChange function in react JS TinyMCE version 6.8.2
- How can I get rid of the large blank space at the bottom of my website pages?
- White Space appearing on the right side of my app when opening from mobile
- White space pushing website elements out of format
- white bar on-top of keyboard on focusing TextInput :React Native
- changing white space character in IAR embedded
- Text automatically double spaced when there are no spaces or breaks in the code
- In HTML4.01, are comments enclosed between “<!--” and “-->” or between “<!-- ” and “ -->”?
- I can't figure out how to fix the whitespace in my java code for a class project. I'm sure that the code should provide the intended output
- How Do You Skip Whitespace In ANTLR Parser Rules?
- Spacing in Java - 3.27.1: LAB: Number pattern
- Existing list of all punctuation/whitespace chars in C#
- Limit more than one linebreak, limit double space, RegEx replace
- Large white space on email in iphone
Related Questions in ESOTERIC-LANGUAGES
- How to separate compressed words from each other in 05AB1E?
- How to have text before the input in Brainfuck?
- Why is my Parser written in Racket Brag exceeding 128 MB memory limit
- Is there a way to print out the value at the pointer an a number in brainfuck?
- How do you use the comma command in Brainfuck?
- How is this simple add numbers and output code doesn't work? (Whitespace language)
- Result “almost doubles” on Try It Online for Project Euler
- Equalizing the lengths of all the lists within a list? (Python)
- Chicken programming hello world
- Writing nested loop in ArnoldC?
- Befunge program looping unexpectedly at @
- "*** - EVAL: undefined function X" in Lisp
- How to print numbers from 1 to 10 using a loop in Brainfuck? Is it even possible?
- Can you create a programming language with just one symbol?
- Identify esolang with two alternating instruction wheels
Related Questions in WHITESPACE-LANGUAGE
- How is this simple add numbers and output code doesn't work? (Whitespace language)
- Whitespace (esoteric programming language) Sort Algorithm
- How to display and write all distinct white space and control characters in VS Code (or other text editor)
- Whitespace - Not printing second character
- Is CTRL+M the same as Enter?
- WhiteSpace programming language multipliction two numbers
- What does the "Duplicate the top item on the stack" mean in Whitespace language?
- ifeq/ifne JVM opcode always branches
- How to check whether a string is substring of another in WhiteSpace?
- How to read character in whitespace language
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Carriage return (ascii code 13) and line feed (ascii code 10) are two separate characters. As @EliSadoff said, Windows systems use the CRLF combo to signal the end of a line, while *nix systems use just the LF.
For programming in Whitespace, every interpreter I have used that runs on Windows (including the online ones I've checked) seems to ignore the carriage return character, so you can fairly safely just use the enter key to type LF for Whitespace.
The main difference you would find in using LF instead of CRLF would likely be that if you opened such a text file on Windows (say, in Notepad), the entire contents may be on a single line, since Windows is expecting the CR. Some programs (Notepad++, for example) consider this though and display things properly with either line ending.