Questions tagged [coderunner]

Developer tool to "edit and run code in any programming language with just a single click." (Note: This is not the Visual Studio Code plug-in. That plug-in's tag is vscode-code-runner.)

CodeRunner is a Mac App from developer Nikolai Krill that allows you to:

Edit and run code in any programming language with just a single click.

With CodeRunner, it has never been easier to write and test code, run scripts, work with algorithms, or simply experiment with a new coding or scripting language.

Some of the advertised CodeRunner features include:

  1. Run code in any language
  2. Powerful editing
  3. Customizable templates
  4. Built-in console
  5. Add your own languages
  6. Interact with your code
72 questions
0
votes
2 answers

How to configure coderunner extension to execute ts

i understand that's a rookie question, but i failed to find an answer to it. For making my tests easier I need to run small parts of my code and, after some search, I found the code runner extension for VsCode to do it. An example is the…
0
votes
1 answer

Why does CodeRunner not recognize my path in VS Code? Using WSL

I'm brand new to programming and I'm getting my environment set up. I'm using CodeRunner on VS Code to get my javascript outputs. In each output though, I'm getting a frustrating…
Alex G.
  • 3
  • 2
0
votes
0 answers

How can I disable Code Runner adding JavaFX imports?

I am currently writing a JavaFX program in Code Runner on my Mac. When I type in new elements, such as buttons or panes, code runner automatically puts in an import for awt like this import java.awt.*; It does this even if I have already imported…
Dallen Corry
  • 23
  • 1
  • 7
0
votes
1 answer

How to change default code editor for git as coderunner4 (a macos app) in MacOS

I am using a code editor named as CodeRunner 4 from Mac App store. I want to set it as default code editor in git, so that when I want to do some changes in files or adding a commit message, terminal will open this default code editor for me. I…
Aayush Shah
  • 584
  • 1
  • 8
  • 17
0
votes
0 answers

JavaScript in HTML "error" when sending request

So, I made updates to this code to fix some issues that were pointed out in another question. The function runs, but returns {"readyState":0,"status":0,"statusText":"error"}. I switched from $.getJSON to $.ajax so I could send headers to hopefully…
M2AV
  • 15
  • 3
0
votes
1 answer

CodeRunner 4.0.3 (Mac software) - how to execute program in Terminal window?

I use CodeRunner on Mac which is a programming IDE for multiple programming languages, not Code Runner vor Visual Studio! When I execute a program, inputs and outputs will be shown inside of this IDE, not in an external Terminal window. The problem…
Christoph S.
  • 585
  • 3
  • 16
0
votes
1 answer

How to add dart language to CodeRunner App in MacOS?

I want to add new language in coderunner app [MacOS]. which just works like DartPad. I installed flutter sdk. but I got this error message when I tried to compile the code after selecting the dart language which I added by Preferences/Languages/Add…
Aayush Shah
  • 584
  • 1
  • 8
  • 17
0
votes
4 answers

Program 'tempCodeRunnerFile.exe' failed to run: Access is deniedAt line:1 char:110 VS Code error

Program 'tempCodeRunnerFile.exe' failed to run: Access is deniedAt line:1 char:110 This error comes up in few programs some times. I can't find any solution. Please help me with one.
Aashi
  • 19
  • 1
  • 2
0
votes
0 answers

How to solve the output problem with CodeRunner in vscode?

I have my own project with virtual environment. When I am trying to debug code everything executes flawlessly and I get the expected output, but when I am trying to run it with run code option from Code Runner extension I receive the…
0
votes
1 answer

How to enable code completion on Coderunner tool for swift language

Any help with swift language code completion on coderunner, would be much appreciated. On the website https://coderunnerapp.com/ its claimed that it does support it, but not sure if I need to enable it explicitly or if I'm missing something.
nakeer
  • 641
  • 1
  • 9
  • 17
0
votes
2 answers

Why does my code give the TypeError: TypeError: 'int' object has no attribute '__getitem__'?

I am making a script on Python that you give a string, and it will find the count of the letters in the string, input it into a list, and add up that list. My script runner keeps giving this error: Traceback (most recent call last): File…
Jim Bowie
  • 3
  • 4
0
votes
2 answers

How to set up python 3.6 interpreter for mac Code Runner 3.0

I have installed python 3.6 using anaconda in mac os. However, when I try to run python code by selecting python3 language in Code Runner 3.0, the console says "To run your code, you need to have Python 3 installed." How can I set up python3…
Bin
  • 1
0
votes
1 answer

Changing which Python Coderunner 3.0 uses to Anaconda's python

I use the Coderunner 3.0 application on my mac for all of my python coding. I don't know how to import any libraries to it and when writing sys.executable in Coderunner it prints /usr/bin/python3. I want to use the version of Python I have from…
0
votes
1 answer

CodeRunner Version 3.0.1

**In CodeRunner Version 3.0.1 not detecting separate C# class files in same folder ** Example following will compile using System; public class Person { } class Student : Person { } But if both each class has it's own file and…
glas guy
  • 1
  • 1
0
votes
1 answer

CodeRunner:error: missing context for method declaration

I'm trying to use "CodeRunner" as Objective-C playground but I'm trying to add a new method to the class: #import int main(int argc, char *argv[]) { @autoreleasepool { } } -(void)printSomeThing { …
user2924482
  • 8,380
  • 23
  • 89
  • 173