Differences between revisions 9 and 10
Revision 9 as of 2023-03-21 14:51:27
Size: 721
Editor: anonymous
Comment:
Revision 10 as of 2023-03-21 16:01:55
Size: 1546
Editor: anonymous
Comment:
Deletions are marked like this. Additions are marked like this.
Line 8: Line 8:
$ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
Line 11: Line 12:
 `cargo` will be available in the grader's `PATH`, you shouldn't need to know the location.
Line 17: Line 19:
 `dotnet` will be available in the grader's `PATH`, you shouldn't need to know the location.
Line 18: Line 21:
 A. You may use the most recent stable version of [[www.lua.org/download.html|Lua], whatt you get with
 {{{#!plain
$ curl -R -O http://www.lua.org/ftp/lua-X.Y.Z.tar.gz
$ tar zxf lua-X.Y.Z.tar.gz
$ cd lua-X.Y.Z
$ make all test
$ make "INSTALL_TOP=${HOME}" install
 }}}
 where `X.Y.Z` is the current (stable?) release; the current stable release is `5.4.4`.
 `lua` will be available in the grader's `PATH`, you shouldn't need to know the location.
 See the [[Assignments/Requirements#SubmissionTemplates|submission template]] section for submission templates.

  1. You may assume the python-graphvis package is available

  2. You may assume the rustcc stable build is available, what you get with

    $ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
    $ rustup install stable
    $ rustup default stable

    cargo will be available in the grader's PATH, you shouldn't need to know the location. See the submission template section for submission templates.

  3. You may assume that .NET 7.0 SDK can be used, what you get with
    $ wget https://dot.net/v1/dotnet-install.sh -O dotnet-install.sh
    $ bash ./dotnet-install.sh --channel 7.0

    dotnet will be available in the grader's PATH, you shouldn't need to know the location. See the submission template section for submission templates.

  4. You may use the most recent stable version of [[www.lua.org/download.html|Lua], whatt you get with
    $ curl -R -O http://www.lua.org/ftp/lua-X.Y.Z.tar.gz
    $ tar zxf lua-X.Y.Z.tar.gz
    $ cd lua-X.Y.Z
    $ make all test 
    $ make "INSTALL_TOP=${HOME}" install

    where X.Y.Z is the current (stable?) release; the current stable release is 5.4.4. lua will be available in the grader's PATH, you shouldn't need to know the location. See the submission template section for submission templates.

LanguageExceptions (last edited 2025-03-03 19:43:26 by anonymous)