This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-: 0:Source:beam/erl_map.c | |
-: 0:Graph:obj/x86_64-unknown-linux-gnu/gcov/smp/erl_map.gcno | |
-: 0:Data:obj/x86_64-unknown-linux-gnu/gcov/smp/erl_map.gcda | |
-: 0:Runs:4 | |
-: 0:Programs:1 | |
-: 1:/* | |
-: 2: * %CopyrightBegin% | |
-: 3: * | |
-: 4: * Copyright Ericsson AB 2014. All Rights Reserved. | |
-: 5: * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/***************************************************** | |
* Exercise 4 | |
* File: jacobi.c | |
* | |
* description: | |
* | |
* Jacobi iteration on a NxN matrix with MAX_ITER iterations | |
* | |
* Language: c | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-module(exceptions). | |
-export([sword/1, talk/0, black_knight/1]). | |
sword(1) -> throw(slice); | |
sword(2) -> erlang:error(cut_arm); | |
sword(3) -> exit(cut_leg); | |
sword(4) -> throw(punch); | |
sword(5) -> exit(cross_bridge). | |
talk() -> "blah blah". |
NewerOlder