User Tools

Site Tools


cs330_f2016:laby

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision Both sides next revision
cs330_f2016:laby [2018/09/26 17:55]
morse
cs330_f2016:laby [2018/09/26 18:03]
morse
Line 27: Line 27:
   * Your preferred text editor (look to see if it has Julia extensions) and command-line invocation of your programs, or   * Your preferred text editor (look to see if it has Julia extensions) and command-line invocation of your programs, or
   * Another IDE of your choice.   * Another IDE of your choice.
- 
-If you use Atom with Juno, I recommend looking at the ''​Revise''​ package in Julia, which you can install using Julia'​s package manager (''​Pkg''​ or using the Package Manager from within the Julia REPL.) 
  
 The instructor and TAs are prepared to help you with the first two (Juno and Jupyter), but you're on your own if you choose an arbitrary editor or IDE that we aren't familiar with. The instructor and TAs are prepared to help you with the first two (Juno and Jupyter), but you're on your own if you choose an arbitrary editor or IDE that we aren't familiar with.
Line 153: Line 151:
  
 <code julia> <code julia>
-using Revise+using Revise ​# make sure to load before the others
 using Error using Error
 using Lexer using Lexer
Line 163: Line 161:
   -Make sure the function stored in your binop are native Julia functions.   -Make sure the function stored in your binop are native Julia functions.
   -Make sure the ''​julia''​ binary is in your executable path (like you did for ''​racket''​ previously)   -Make sure the ''​julia''​ binary is in your executable path (like you did for ''​racket''​ previously)
-  -Make sure the path for the Error and Lexer files are on you Julia path. To do this you can call ''​JULIA_LOAD_PATH=PATH python ....''​ or you can add ''​push!(LOAD_PATH,​pwd())''​ into your ''​.juliarc''​ file.+  -Make sure the path for the Error and Lexer files are on you Julia path. To do this you can add ''​push!(LOAD_PATH,​pwd())''​ into your ''​~/.julia/​config/​startup.jl''​ file, then just make sure to run the autograder from the same directory in which you have RudInt, Lexer, and Error.
   -Inside your module have the lines ''​using Error''​ and ''​using Lexer''​. ​ (These should already be in the base code we give you to start with.)   -Inside your module have the lines ''​using Error''​ and ''​using Lexer''​. ​ (These should already be in the base code we give you to start with.)
cs330_f2016/laby.txt ยท Last modified: 2021/06/30 23:42 (external edit)