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
12
votes
3 answers

Is there an Objective-C Interpreter for the Mac?

Sometimes it's nice to open an interpreter, type out some code and see if it's working, rather than having to compile something large like an Xcode project just to quickly test something. Does an Objective-C Interpreter exist for the Mac, or am I…
Dave
  • 12,408
  • 12
  • 64
  • 67
8
votes
1 answer

Windows code editor that compiles/inteprets most languages ala CodeRunner?

I was intrigued when I found out about a Mac app called CodeRunner—a simple code editor that can run whatever code you throw at it without having to install any compilers and offers boilerplates for main functions. Is there a program like that for…
Spiros Ag
  • 81
  • 1
  • 2
5
votes
2 answers

Mac OS X /bin/bash: python: command not found in some IDE

When I compiled test.py(a very simple Python file) in Sublime Text or CodeRunner, I got the error:/bin/bash: python: command not found. Then I input python test.py in the Terminal app, it worked. Later I downloaded Pycharm and compiled the file…
ChenYang
  • 441
  • 7
  • 13
4
votes
1 answer

How can I include non-framework libraries when writing CodeRunner documents?

I've been using CodeRunner to collect little chunks of code that are frequently used while developing but don't necessarily belong in the codebase for a project. It's a great tool for summarizing in Objective-C and Cocoa because I can include…
Nick
  • 9,792
  • 7
  • 50
  • 60
3
votes
0 answers

I can't use django in coderunner 2

I have been trying to import and use django in python, and it cant import any modules I installed via pip. When I downloaded django on the command line it said in anaconda which was outside my user. So I tried to put it in my user d=and see if that…
programmer
  • 31
  • 2
3
votes
3 answers

Coderunner 2 - Initializing List Errors - C++11

I'm new to programming and teaching myself C++ with Bjarne's book, C++11 version. I'm using Coderunner 2 with Xcode command-line tools installed on OS X El Cap. I get errors for the following code when creating variables using initializer lists. My…
rcapac
  • 99
  • 6
3
votes
0 answers

Coderunner IDE auto-indent?

Using the Codeblocks IDE there is an option "Format use AStyle" to auto-indent my entire C++ code. I can't seem to find an option like this in Coderunner V2 for Mac and the web is pulling up nothing. Does anyone know if this option exists?
Austin
  • 6,921
  • 12
  • 73
  • 138
3
votes
2 answers

CodeRunner and multiple file projects

So far, I have used CodeRunner to compile a single C++ file. I can't figure out how to compile two files together using CodeRunner's run settings. I am running CodeRunner 2.0.1 on Yosemite. I need to know how to adjust CodeRunner's run settings…
James Connell
  • 33
  • 1
  • 6
3
votes
1 answer

How to install Coderunner on Ubuntu 12.04 LTS?

I am trying to install Coderunner on Ubuntu 12.04 LTS with the following guide. The system runs Ruby 2.1.0 (also tried 1.9.3 without…
user3046831
2
votes
1 answer

Change the version to Python 3 in Virtual Studio Code (VS Code) if Code Runner uses older version like python 2 (Q+A)

I use the extension code-runner for my VS code to run it directly in the app without a terminal and I had a problem where I had the latest version of Python installed (3.10.0) I had selected that version as my interpreter yet code-runner was running…
2
votes
1 answer

C# Assembly in CodeRunner 2

I am using CodeRunner 2 (2.0.3) and I can not compile code in C#. I get the warning: /Users/Username/Library/Application Support/CodeRunner/Languages/C#.crLanguage/Scripts/compile.sh: line 25: gmcs: command not found In order to run C# code, you…
iSkore
  • 7,394
  • 3
  • 34
  • 59
2
votes
2 answers

"prompt is not defined"

I am trying to create a simple geometry program in JavaScript, but for some reason when I try to run the code in a code runner, it says Error: prompt is not defined. Note: I am using a code running app called Code Runner on my Mac. var question =…
Tae Rugh
  • 55
  • 1
  • 4
2
votes
1 answer

"Could not find module ‘Test.HUnit’" Error when executing Haskell's unittest (HUnit) in CodeRunner

I have simple unit test code for Haskell's HUnit. I use Mac OS X 10.10, and I installed HUnit with cabal install hunit. module TestSafePrelude where import SafePrelude( safeHead ) import Test.HUnit testSafeHeadForEmptyList ::…
prosseek
  • 182,215
  • 215
  • 566
  • 871
2
votes
1 answer

C++ Run Command Error ./ is a directory

I am using the Coderunner app for Mac OS X to mess around with some c++ code. However, whenever I run any c++ program (including when the program is blank) I get this same error - Run Command: line 1: ./: is a directory I cannot figure out why…
dillonh2
  • 155
  • 2
  • 12
2
votes
1 answer

How is the CodeRunner Program Input field used?

How is the Custom Run sheet Program Input field used in CodeRunner say for a C or Objective-C program?
Jim Merkel
  • 352
  • 2
  • 9
1
2 3 4 5